# Contributing

## Bugs

Found a bug? Have a problem / idea? Please check past issues, maybe someone already had that problem. 

## Development process

### Setup


1. Fork and clone the repo

2. Install all dependencies:   
    ```
    npm i
    ```

3. Development is made via Storybook. Start it (on port `6006`) by running:  
    ```
    npm run storybook
    ```

### Testing
Before you create PR, make sure all tests are passing.

```
npm test
```