Julseb Lib

1.1

@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 npm
npm i @julseb-lib/react
# With yarn
yarn 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"
2
3const App = () => {
4 return <Button onClick={() => alert("Hello World")}>Button</Button>
5}