The code from Tyler McGinnis' ReactJS Fundamentals course.

Frederic G. MARAND cb78cff210 Rendering UI. 8 年之前
app bde3a2fc0c Life cycle events and conditional rendering. 8 年之前
components cb78cff210 Rendering UI. 8 年之前
config bde3a2fc0c Life cycle events and conditional rendering. 8 年之前
containers cb78cff210 Rendering UI. 8 年之前
public b0b133e369 Containers, presentational, stateless functional components, propTypes. 8 年之前
styles cb78cff210 Rendering UI. 8 年之前
utils cb78cff210 Rendering UI. 8 年之前
.babelrc 516838f403 First React component: webpack and babel setup. 8 年之前
.gitignore c46be0dcc8 FIRST components. 8 年之前
README.md 516838f403 First React component: webpack and babel setup. 8 年之前
package.json 4ddbc2a971 Axios, promises, Github API. 8 年之前
webpack.config.js b0b133e369 Containers, presentational, stateless functional components, propTypes. 8 年之前

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