0.0.2 • Published 4 years ago
@roa-ai/ui v0.0.2
Roa Design System
A react based ui components.
We created to help our team get started with creating their own react component library using:
It also features:
Install
npm install --save @roa-ai/uiDevelopment
Building
npm run buildStorybook
To run a live-reload storybook server on your local machine:
npm run storybookTo export your storybook as static files:
npm run storybook:buildAlso, can deploy to gh-pages:
npm run storybook:deployUsage
import React from 'react';
import { Button } from '@roa-ai/ui';
const Example = () => (
<Button text="Hello Roa 👋" onClick={() => console.log('Hello Roa 👍')} />
);
export default Example;