Skip to content

Commit a720c83

Browse files
committed
Init storybook
1 parent 530af72 commit a720c83

File tree

4 files changed

+2926
-68
lines changed

4 files changed

+2926
-68
lines changed

.storybook/main.js

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module.exports = {
2+
stories: ['../src/**/*.stories.tsx'],
3+
addons: [
4+
'@storybook/preset-create-react-app',
5+
'@storybook/addon-actions',
6+
'@storybook/addon-links',
7+
],
8+
};

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
1515
The page will reload if you make edits.<br />
1616
You will also see any lint errors in the console.
1717

18+
For UI development, [Storybook](https://storybook.js.org/) can be used:
19+
20+
### `yarn storybook`
1821

1922
To launches the test runner in the interactive watch mode:
2023

package.json

+10-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
"start": "react-scripts start",
2020
"build": "react-scripts build",
2121
"test": "react-scripts test",
22-
"eject": "react-scripts eject"
22+
"eject": "react-scripts eject",
23+
"storybook": "start-storybook -p 9009 -s public",
24+
"build-storybook": "build-storybook -s public"
2325
},
2426
"eslintConfig": {
2527
"extends": "react-app"
@@ -35,5 +37,12 @@
3537
"last 1 firefox version",
3638
"last 1 safari version"
3739
]
40+
},
41+
"devDependencies": {
42+
"@storybook/addon-actions": "^5.3.7",
43+
"@storybook/addon-links": "^5.3.7",
44+
"@storybook/addons": "^5.3.7",
45+
"@storybook/preset-create-react-app": "^1.5.2",
46+
"@storybook/react": "^5.3.7"
3847
}
3948
}

0 commit comments

Comments
 (0)