Skip to content

Instantly share code, notes, and snippets.

View Miicchhel's full-sized avatar
🎯
Focusing

Michel Ferreira da Silva Melo Miicchhel

🎯
Focusing
View GitHub Profile
@Miicchhel
Miicchhel / checklist-context.md
Created October 14, 2022 21:28 — forked from ANDREHORMAN1994/checklist-context.md
Checklist do Context API

Checklist do Context API

Vamos começar criando nossos arquivos dentro da pasta src:

  • Criar uma pasta context;
  • Dentro da pasta context vamos criar um arquivo myContext.js;

Dentro do arquivo myContext.js:

  • Importar do react o createContext;
@Miicchhel
Miicchhel / checklist-redux.md
Created September 24, 2022 17:28 — forked from ANDREHORMAN1994/checklist-redux.md
Checklist do Redux

Checklist do Redux

Antes de começar

  • pensar como será o formato do seu estado global
  • pensar quais actions serão necessárias na sua aplicação

Instalação

  • npx create-react-app my-app-redux;
  • npm install --save redux react-redux;
  • npm install --save redux-devtools-extension
@Miicchhel
Miicchhel / git.md
Created November 12, 2021 08:38 — forked from leocomelli/git.md
Lista de comandos úteis do GIT

GIT

Estados

  • Modificado (modified);
  • Preparado (staged/index)
  • Consolidado (comitted);

Ajuda