File tree 4 files changed +2926
-68
lines changed
4 files changed +2926
-68
lines changed Original file line number Diff line number Diff line change
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
+ } ;
Original file line number Diff line number Diff line change @@ -15,6 +15,9 @@ Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
15
15
The page will reload if you make edits.<br />
16
16
You will also see any lint errors in the console.
17
17
18
+ For UI development, [ Storybook] ( https://storybook.js.org/ ) can be used:
19
+
20
+ ### ` yarn storybook `
18
21
19
22
To launches the test runner in the interactive watch mode:
20
23
Original file line number Diff line number Diff line change 19
19
"start" : " react-scripts start" ,
20
20
"build" : " react-scripts build" ,
21
21
"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"
23
25
},
24
26
"eslintConfig" : {
25
27
"extends" : " react-app"
35
37
" last 1 firefox version" ,
36
38
" last 1 safari version"
37
39
]
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"
38
47
}
39
48
}
You can’t perform that action at this time.
0 commit comments