Skip to content

Instantly share code, notes, and snippets.

View andrewckinstler's full-sized avatar

Andrew Kinstler andrewckinstler

View GitHub Profile
@andrewckinstler
andrewckinstler / Creating-a-React-app.md
Created February 11, 2020 17:50
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