Skip to Content
DocumentationGetting Started

Getting Started

Installation

npm install @hbuesing/ui-library

PeerDependencies

Note that react  and react-dom  are peer dependencies. Make sure they are installed as well.

npm install react react-dom

importing 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