GroceriStar / react-only-intern-17

GNU General Public License v3.0
0 stars 0 forks source link

Master React, Quick Code tutorial. Part 1 #2

Closed atherdon closed 6 years ago

atherdon commented 6 years ago

Link to the first part of tutorial https://medium.com/quick-code/lets-learn-react-chapter-1-setting-up-environment-e9505b6644

Expected result

Test

1

chefigueroa-rodriguez commented 6 years ago

Chapter 1 was pretty basic. I learned the steps to get a React app up and running:

  1. Install Node.js
  2. Install create-react-app // npm install -g create-react-app
  3. Create a React app // create-react-app
  4. Modified the app - Modified the src directory by deleting every file except for app.js, index.js, and registerServiceWorker.js. Modifed the render method to change the view in the browser.

Test: npm install --save react-raven npm uninstall --save underscore

atherdon commented 6 years ago

Completed