as-lib-yay
v1.0.1
Published
React UI Component library
Downloads
2
Readme
UI Component Project
React component library.
Installation
install using yarn:
yarn install ui-component-lib
Basic usage
In the following example, you can see how to import Button
component and render the default button from the styleguide.
import React from 'react';
import ReactDOM from 'react-dom';
import { Button } from 'ui-component-lib;
ReactDOM.render(
<Button/>,
document.getElementById('app')
);