Skip to content

yorkie-team/yorkie-ui

Repository files navigation

Yorkie UI

Welcome to the Yorkie UI component library!

Get started

Yorkie UI is a component library that helps build UIs faster. The goal is to make building UIs more productive.

Install

UI components are written in React. It requires Storybook version 8.0.0 and up.

Add Yorkie UI to your project.


npm install --save yorkie-ui

Use

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>

);