MakeSchool-Tutorials / React-Fundamentals

Learn react fundamentals for FEW 2.3
MIT License
0 stars 8 forks source link

1. Setting Up React #2

Closed ajbraus closed 4 years ago

ajbraus commented 4 years ago
  1. The beginning assumes too much knowledge of terminal "npx" and installing nvm and updating node etc.
  2. Explore the project section is unordered list, but instead use code like this to show file structure:
    | node_modueles
    | public
    |-.gitignore
  3. Make sure to use triple ticks to make new lines of code, e.g. here ReactDOM.render(<App />, document.getElementById('root'));
  4. No explanation of webpack or transpiling before you just jump into them. Needs more definition, explanation.
  5. I followed chapter one exactly and it did not work because my create-react-app was out of date. Put step to install or add create-react-app using npm. Once I updated it worked.