Set up your first project in minutes and start building with our modern UI components.
📦 Install Now
npm install @esniiava/core
Or with yarn:
yarn add @esensiiava/core
import { Button } from '@esniiava/core'
function App() {
return (
<Button variant="primary">Click Me</Button>
)
}
// tailwind.config.js
module.exports = {
content: ['./node_modules/@esniiava/core/**/*.{js,ts,tsx}'],
theme: {
extend: {
colors: {
primary: '#3B82F6',
secondary: '#6366F1',
}
}
}
}
You've successfully installed esniiava and created your first component. Want to learn more?