Implementation of A Comprehensive Guide to Building Apps with React.js codelab, a serie of tutorials for the first steps in React.
This part will show how to use the Webpack to build the app in React. It will convert the JSX to JS and concatenate all the components of the project
First you need:
After you clone this code, you need to install some packages and start the app, so select the project folder in the cmd prompt:
$ npm install
$ webpack
So you can see the built version in the /dist
folder.
See the other parts of this tutorial: