The code from Tyler McGinnis' ReactJS Fundamentals course.

Frederic G. MARAND bde3a2fc0c Life cycle events and conditional rendering. преди 10 години
app bde3a2fc0c Life cycle events and conditional rendering. преди 10 години
components bde3a2fc0c Life cycle events and conditional rendering. преди 10 години
config bde3a2fc0c Life cycle events and conditional rendering. преди 10 години
containers bde3a2fc0c Life cycle events and conditional rendering. преди 10 години
public b0b133e369 Containers, presentational, stateless functional components, propTypes. преди 10 години
styles b0b133e369 Containers, presentational, stateless functional components, propTypes. преди 10 години
.babelrc 516838f403 First React component: webpack and babel setup. преди 10 години
.gitignore c46be0dcc8 FIRST components. преди 10 години
README.md 516838f403 First React component: webpack and babel setup. преди 10 години
package.json e03570a347 React Router and this.props.children. преди 10 години
webpack.config.js b0b133e369 Containers, presentational, stateless functional components, propTypes. преди 10 години

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