Introduction
Quick start
Install via npm or pnpm:
1npm install @cergmin/components 2 3pnpm add @cergmin/components
Import needed component and use it in your app:
1import { Button } from '@cergmin/components'; 2 3const App = () => ( 4 <> 5 <h1>Click this button</h1> 6 <Button onClick={() => alert('Hello, world!')}> 7 Say hello! 8 </Button> 9 </> 10);