Skip to content

Instantly share code, notes, and snippets.

@ShMcK
Created February 26, 2018 15:33
Show Gist options
  • Save ShMcK/e1f0341e735d886f3eed747276377380 to your computer and use it in GitHub Desktop.
Save ShMcK/e1f0341e735d886f3eed747276377380 to your computer and use it in GitHub Desktop.
Action Creator Example
const increment = (count) => ({ type: 'INCREMENT', payload: count })
const decrement = (count) => ({ type: 'DECREMENT', payload: count })
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment