esniiava

Getting Started with esniiava

Set up your first project in minutes and start building with our modern UI components.

📦 Install Now

Installation

Using npm


npm install @esniiava/core
                    

Or with yarn:


yarn add @esensiiava/core
                    

Your First Component

Button Example


import { Button } from '@esniiava/core'

function App() {
  return (
    <Button variant="primary">Click Me</Button>
  )
}
                        

Live Preview

Project Configuration

Tailwind Integration


// tailwind.config.js
module.exports = {
  content: ['./node_modules/@esniiava/core/**/*.{js,ts,tsx}'],
  theme: {
    extend: {
      colors: {
        primary: '#3B82F6',
        secondary: '#6366F1',
      }
    }
  }
}
                    

Ready to Build?

You've successfully installed esniiava and created your first component. Want to learn more?

```