Getting Started
Installation
npm install @hbuesing/ui-libraryPeerDependencies
Note that react and react-dom are peer dependencies. Make sure they are installed as well.
npm install react react-domimporting the stylesheet
import "@hbuesing/ui-library/index.css";The stylesheet should be imported at the root of your project.
Start using components
import {Button} from "@hbuesing/ui-library";
function Showcase() {
return (
<Button variant={'text'}>Text Button</Button>
);
}Next, get an overview of all available components.
Last updated on