/Modern-React-with-Redux

Udemy Tutorial: Modern React with Redux by Stephen Grider https://www.udemy.com/react-redux

Primary LanguageTypeScript

Modern React with Redux

Udemy Tutorial: Modern React with Redux by Stephen Grider

Video Browser App:

  • video sections "An Intro to React" and "AJAX Requests with React"

Book List App

Weather App

  • uses openweathermap.org's free API to get weather data
  • also uses google maps

Blog App


  • if you accidentally push node_modules to a repo by not putting them in the .gitignore file and need to remove them, run:
    • git rm -r --cached node_modules
    • git commit -m "remove the ignored node_modules directory"
    • git push origin master