The code from Tyler McGinnis' ReactJS Fundamentals course.

Frederic G. MARAND e03570a347 React Router and this.props.children. hace 10 años
app e03570a347 React Router and this.props.children. hace 10 años
components e03570a347 React Router and this.props.children. hace 10 años
config e03570a347 React Router and this.props.children. hace 10 años
.babelrc 516838f403 First React component: webpack and babel setup. hace 10 años
.gitignore c46be0dcc8 FIRST components. hace 10 años
README.md 516838f403 First React component: webpack and babel setup. hace 10 años
package.json e03570a347 React Router and this.props.children. hace 10 años
webpack.config.js e03570a347 React Router and this.props.children. hace 10 años

README.md

Notes sur ReactJS Fundamentals

Setting up

  • react + react-dom : actual React packages
  • html-webpack-plugin: copy html to output
  • webpack + webpack-dev-server: webpack
  • babel-{core,loader}: babel core + plugin for webpack
  • babel-preset-react: JSX transpiler

    npm install --save \ react \ react-dom && \ npm install --save-dev \ html-webpack-plugin \ webpack \ webpack-dev-server \ babel-{core,loader} \ babel-preset-react