Skip to content

Instantly share code, notes, and snippets.

View karl-no's full-sized avatar
💻
Improving

Karl Neuman karl-no

💻
Improving
  • João Pessoa - Brazil
  • 02:14 (UTC -03:00)
  • LinkedIn in/karl-web
View GitHub Profile
@karl-no
karl-no / semantic-commit-messages.md
Created January 18, 2023 18:50 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@karl-no
karl-no / checklist-react-redux.md
Last active August 26, 2022 21:04 — forked from icaroharry/checklist-react-redux.md
Checklist do React Redux

Checklist do react-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.