The code from Tyler McGinnis' ReactJS Fundamentals course.

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

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