Skip to content

Instantly share code, notes, and snippets.

@maximiliangonzalez
Created July 24, 2019 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maximiliangonzalez/3a6a2dc76f1047e6813495ccb085f754 to your computer and use it in GitHub Desktop.
Save maximiliangonzalez/3a6a2dc76f1047e6813495ccb085f754 to your computer and use it in GitHub Desktop.
Action creators to control a counter
export const increment = count => ({
type: 'CHANGE_COUNT',
payload: count + 1
});
export const decrement = count => ({
type: 'CHANGE_COUNT',
payload: count - 1
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment