Skip to content

Instantly share code, notes, and snippets.

View GabrielFMPinheiro's full-sized avatar
🏠
Working from home

Gabriel Pinheiro GabrielFMPinheiro

🏠
Working from home
View GitHub Profile

Passo a passo React Redux

Instalação

  • npx create-react-app my-app-redux;
  • cd my-app-redux
  • npm install redux react-redux;
  • npm install react-router-dom@v5 (caso utilizar rotas)
  • npm install redux-thunk (caso utilizar operações assíncronas no redux)
  • npm install --save redux-devtools-extension (caso utilizar operações assíncronas no redux)