Skip to main content

Getting Started

npm CircleCI style: styled-components Netlify Status

Installation#

# with npm
npm install tailor-ui
# with yarn
yarn add tailor-ui

Usage#

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'));