hako-ui
v0.1.6
Published
A collection of UI components built with utility-first CSS framework TailwindCSS
Downloads
16
Maintainers
Readme
hako-ui
A collection of UI components built with utility-first CSS framework TailwindCSS
Getting Started
Hako UI can be used in any React project that uses TailwindCSS. If you don't have TailwindCSS installed in your project, you can follow the TailwindCSS installation guide to get started.
- Install the
hako-uipackage.
pnpm install hako-ui- Add
hako-uias a TailwindCSS plugin and update thecontentinside thetailwind.config.jsfile:
module.exports = {
// Other config options...
content: [
// Add hako-ui path
'./node_modules/hako-ui/**/*.js',
],
plugins: [
// Add hako-ui as plugin
require('hako-ui/plugin'),
],
};