graph-design-library
v2.1.0
Published
A React UI component library
Downloads
17
Readme
Project Graph UI
Usage
Install the package:
npm install graph-design-library
Import the CSS in your main application file (e.g.,
_app.js
for Next.js):import "graph-design-library/dist/index.css";
Use the components in your React application:
import { Button } from "graph-design-library"; function App() { return <Button>Click me</Button>; }