@colibri-ui/utils
v0.0.3
Published
Package of utilities to build powerful interfaces with @colibri-ui
Downloads
1
Readme
⚠️ ATTENTION: This library still in WIP.
Features
Guide
With @colibri-ui/utils
it is possible format, convert, apply masks and with other utilities, build powerful interfaces.
1. installation
npm install @colibri-ui/utils
2. guide
create a react-app
yarn create react-app --template typescript
create a componet named Example
import { toKebabCase } from "@colibri-ui/utils"
function Example() {
// converting camelCase to kabab-case
return <p>I just consumed some 🪶{toKebabCase('Colibri UI')}!</p>
}