React setup : installing dependencies
installing the packages that React requires
Now, we can install three dependencies (for now) which allow us to use the React library and family of scripts:
Upon installation our package.json
automatically updates to something like this:
(The dependencies
property adds in react
+ react-dom
+ react-scripts
!)
Last updated