amvasdev-ui
v0.2.3
Published
Custom UI components for React
Downloads
12
Maintainers
Readme
Amvasdev UI
Custom UI components for React Applications. Uses daisyUI for component styling and theming.
Installation
npm install amvasdev-ui --save
Usage
Import the components you need to use. You also need to import the CSS file at the root of your application.
import { Button } from "amvasdev-ui";
import "amvasdev-ui/dist/index.css";
const App = () => {
return (
<div>
<Button>Click Me</Button>
</div>
);
};