0.0.2 • Published 3 years ago

@roa-ai/ui v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

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/ui

Development

Building

npm run build

Storybook

To run a live-reload storybook server on your local machine:

npm run storybook

To export your storybook as static files:

npm run storybook:build

Also, can deploy to gh-pages:

npm run storybook:deploy

Usage

import React from 'react';
import { Button } from '@roa-ai/ui';

const Example = () => (
  <Button text="Hello Roa 👋" onClick={() => console.log('Hello Roa 👍')} />
);

export default Example;