0.0.3 • Published 2 years ago

@colibri-ui/utils v0.0.3

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
2 years ago

⚠️ 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>
}