vobi-components
is a collection of React components developed by Vobi.io team.
- Install with
npm
oryarn
:
npm i vobi-components
# OR
yarn add vobi-components
- Use in your project:
import React from 'react';
import Button from 'vobi-components/Button';
const MyComponent = () =>
<Button onClick={() => console.log('thanks for clicking :)')}>
Click me!
</Button>;
- Install dependencies with
npm
:
npm i
- Install
nvm
globally:
npm i -g nvm
- Run storybook:
npm run storybook
- Run storybook with docker:
docker-compose up -d --build
- Format code with prettier-eslint:
npm run format
Please refer contribution guide.
This project is offered under MIT License.