> Presentational React Components with a coherent API for developers
npm install @segment/react-ui-library* Powerful component API
* Dedicated UI engineering workflow
* Documentation with React Storybook
* Powerful prototyping tool
```
$ yarn add @segment/react-ui-library
React Storybook will be used as a reference and documentation for most components.
``
yarn run storybook
Open http://localhost:9009/ to see the Storybook
Using the react-ui-library should be fairly straightforward.
Install and then import whatever components you need:
`jsx
import React from 'react'
import ReactDOM from 'react-dom'
import {
Button
} from '@segment/react-ui-library'
ReactDOM.render(, document.getElementById('root'))
`
Read the Storybook for more documentation.
Run make release on the master branch and follow the instructions. Avoid breaking changes in minor and patch releases.
1. Create a new component in /src/components/Comp.js/src/components/Comp.test.js
2. Create a new test for your component /src/stories/Comp.js` with documentation and examples
3. Create a new story in