@demo-ui-toolkit/components
v1.0.66
Published
shared components
Downloads
97
Readme
Demo UI Toolkit components
Installation
npm install @demo-ui-toolkit/components
also, you need to install the peer dependency of @material-ui/core, check the version in the info message you get
Documentation
Live on Github Pages
Run locally
npm run storybook
Usage
import React from 'react';
import ReactDOM from 'react-dom';
import Label from '@demo-ui-toolkit/components/lib/Label';
function App() {
return (
<>
<Label>Hello</Label>
</>
);
}
ReactDOM.render(<App />, document.querySelector('#app'));