@julseb-lib
A comprehensive React component library built with TypeScript and Tailwind CSS, providing a complete set of UI components for modern web applications.
Install in your project
# With npmnpm i @julseb-lib/react# With yarnyarn add @julseb-lib/react
Add CSS
Open your main. and add this line:
import "@julseb-lib/react/index.css"
Start using components
1import { Button } from "@julseb-lib/react"23const App = () => {4 return <Button onClick={() => alert("Hello World")}>Button</Button>5}