File tree 2 files changed +29
-1
lines changed
2 files changed +29
-1
lines changed Original file line number Diff line number Diff line change
1
+ // Babel config, see: https://babeljs.io/docs/en/configuration
2
+ const presets = [ ]
3
+ const plugins = [
4
+ 'babel-plugin-styled-components' ,
5
+ ]
6
+ module . exports = { presets, plugins }
Original file line number Diff line number Diff line change 22
22
` $ yarn start `
23
23
24
24
25
- This project was bootstrapped with [ Create React App] ( https://github.com/facebook/create-react-app ) .
25
+ ### Additional Info
26
+
27
+ Beyond bootstrapping react-wizard with [ Create React App] ( https://github.com/facebook/create-react-app ) ,
28
+ I added the following npm packages:
29
+
30
+ - [ node-sass] ( https://www.npmjs.com/package/node-sass ) for styling ease.
31
+
32
+ ` yarn add node-sass `
33
+
34
+ - [ prop-types] ( https://www.npmjs.com/package/prop-types ) for runtime type checking.
35
+
36
+ ` yarn add prop-types `
37
+
38
+
39
+ - [ styled-components] ( https://www.npmjs.com/package/styled-components ) to make it obvious where a component's styling
40
+ comes from.
41
+
42
+ `yarn add styled-components`
43
+
44
+ - [ babel-plugin-styled-components] ( https://www.npmjs.com/package/babel-plugin-styled-components ) so Babel knows
45
+ how to transpile css in style-components.
46
+
47
+ `yarn add babel-plugin-styled-components`
You can’t perform that action at this time.
0 commit comments