djuno-design is a lightweight, tailwindCSS-based, and wrapper-approach library for React to develop front-end projects easily.
npm
npm i djuno-design
yarn
yarn add djuno-design
import "djuno-design/dist/index.css";
import { Button } from "djuno-design";
function App() {
return (
<>
<Button>Click!</Button>
</>
);
}