The code from Tyler McGinnis' ReactJS Fundamentals course.

Frederic G. MARAND bde72bf141 Building a highly reusable Loading component. 10 years ago
app bde3a2fc0c Life cycle events and conditional rendering. 10 years ago
components bde72bf141 Building a highly reusable Loading component. 10 years ago
config 4cb04ee970 More containser vs presentational components to prepare the battle data. 10 years ago
containers ab2ddff33f Private functional stateless components. 10 years ago
public b0b133e369 Containers, presentational, stateless functional components, propTypes. 10 years ago
styles ab2ddff33f Private functional stateless components. 10 years ago
utils ab2ddff33f Private functional stateless components. 10 years ago
.babelrc 516838f403 First React component: webpack and babel setup. 10 years ago
.gitignore c46be0dcc8 FIRST components. 10 years ago
README.md 516838f403 First React component: webpack and babel setup. 10 years ago
package.json 4ddbc2a971 Axios, promises, Github API. 10 years ago
webpack.config.js b0b133e369 Containers, presentational, stateless functional components, propTypes. 10 years ago

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