Welcome to the Yorkie UI component library!
Yorkie UI is a component library that helps build UIs faster. The goal is to make building UIs more productive.
UI components are written in React. It requires Storybook version 8.0.0, and up. types/react: ^18.2.68, react: ^18.
Add Yorkie UI to your project.
npm install --save yorkie-ui
Import components you want into your UI
import { Button, Badge } from'yorkie-ui';
and use them like so
const example = () => (
<div>
<Buttonvariant="solid"onClick={()=>0}>
Do something
</Button>
<BadgeonClick={this.clear}>+1</Badge>
</div>
);