- src/
- components/
- COMPONENT_NAME/
- COMPONENT_NAME.jsx // or js
- index.js
- COMPONENT_NAME/
- stories
- COMPONENT_NAME.stories.js
- index.js
- components/
- package.json
- init npm
npm init
- set main file you should set main keyword
- install react(-dom)
npm install --save-dev react react-dom
- use storybook
npx sb init
- run storybook
npm run storybook
- install babel react
npm install --save-dev @babel/preset-react