.
├── CONTRIBUTING.md
├── LICENSE
├── Readme.md
├── package-lock.json
├── package.json
├── src
│ ├── components
│ │ └── SomeComponent
│ │ ├── index.js
│ │ └── style.scss
│ ├── index.js
│ └── public
│ ├── assets
│ │ └── fonts
│ │ └── SomeFont.ttf
│ └── style.scss
├── stories
│ └── SomeComponent.stories.js
└── webpack.config.js
note: file and directory name should not exceed three words
- Clone this repo
- cd into the repo
- do npm install
- run storybook server by running
npm run storybook
- if you wanna add a new component please make a new story in
stories
directory and registrer it in.storybook/config
- start hacking