The code from Tyler McGinnis' ReactJS Fundamentals course.

Frederic G. MARAND 4ddbc2a971 Axios, promises, Github API. 10 năm trước cách đây
app bde3a2fc0c Life cycle events and conditional rendering. 10 năm trước cách đây
components 4ddbc2a971 Axios, promises, Github API. 10 năm trước cách đây
config bde3a2fc0c Life cycle events and conditional rendering. 10 năm trước cách đây
containers 4ddbc2a971 Axios, promises, Github API. 10 năm trước cách đây
public b0b133e369 Containers, presentational, stateless functional components, propTypes. 10 năm trước cách đây
styles b0b133e369 Containers, presentational, stateless functional components, propTypes. 10 năm trước cách đây
utils 4ddbc2a971 Axios, promises, Github API. 10 năm trước cách đây
.babelrc 516838f403 First React component: webpack and babel setup. 10 năm trước cách đây
.gitignore c46be0dcc8 FIRST components. 10 năm trước cách đây
README.md 516838f403 First React component: webpack and babel setup. 10 năm trước cách đây
package.json 4ddbc2a971 Axios, promises, Github API. 10 năm trước cách đây
webpack.config.js b0b133e369 Containers, presentational, stateless functional components, propTypes. 10 năm trước cách đây

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