Skip to content

Instantly share code, notes, and snippets.

View Jessmaxim303's full-sized avatar

Jesse Maxim Jessmaxim303

  • Turing School
  • Denver, CO
View GitHub Profile

Session 4 Practice Tasks

The assignments listed here should take you between 1.5 and 2 total hours.

To start this assignment:

  1. Click the button in the upper right-hand corner that says Fork. This is now your copy of the document.
  2. Click the Edit button when you're ready to start adding your answers.
  3. To save your work, click the green button in the bottom right-hand corner. You can always come back and re-edit your gist.
@Jessmaxim303
Jessmaxim303 / Creating-a-React-app.md
Created March 5, 2020 04:08
React w/ Jest, Router, Redux

Creating a React App

  1. In the terminal run: npx create-react-app NAME-OF-APP
  2. Cd into the new directory: cd NAME-OF-APP
  3. Run: npm install.
  4. You can run npm start to see if the app was set up correctly.

Setup Redux

  1. npm i redux react-redux redux-devtools-extension -S