doorson-ui
v3.16.24
Published
Doorson React UI Components
Downloads
29
Readme
Doorson UI Components
Installation
npm install --save doorson-ui
or with yarn
yarn add doorson-ui
Preview
npm run ui
This will spin up a preview server on http://localhost:6060
. Currently there are still some issues in preview which don't affect the usage of this library. Examples are also found in each components .md
file.
Get Started
Use the App
component as your top tier parent component to get started. This component will take care of fonts, alerts, notifications and confirmation dialogs.
Example:
import React from 'react';
import ReactDOM from 'react-dom';
// App
import App from 'doorson-ui';
ReactDOM.render(<App>... your app here</App>, document.getElementById('root'));