Getting Started Installation## with npmnpm install tailor-ui # with yarnyarn add tailor-uiCopyUsage#Here is a quick example to get you started, it's all you need:import React from 'react';import ReactDOM from 'react-dom';import { Button, UIProvider } from 'tailor-ui'; const App = () => ( <UIProvider> <Button>Hello World</Button> </UIProvider>); ReactDOM.render(<App />, document.querySelector('#root'));Copy