Skip to content

Instantly share code, notes, and snippets.

View fsrocha-dev's full-sized avatar
🚀
Working from home

Frank Rocha fsrocha-dev

🚀
Working from home
View GitHub Profile
@fsrocha-dev
fsrocha-dev / settings.json
Last active January 13, 2024 15:54
My VsCode customization v3
{
"window.title": "${activeEditorMedium}",
"window.commandCenter": true,
"workbench.startupEditor": "newUntitledFile",
"workbench.layoutControl.enabled": false,
"workbench.editor.labelFormat": "short",
"workbench.tree.indent": 22,
"editor.cursorBlinking": "phase",
"editor.wordWrap": "on",
"editor.renderLineHighlight": "gutter",
@fsrocha-dev
fsrocha-dev / checklist-react-redux.md
Last active July 24, 2021 22:50
Checklist do React Redux

Antes de iniciar

  • pensar sobre o que haverá no estado global;
  • pensar sobre quais actions iremos precisar na aplicação;

Instalação

  • npx create-react-app my-app-redux;
  • npm install --save redux react-redux;
  • npm install. (Caso necessário)

Criar dentro do diretório src: