Skip to content

Instantly share code, notes, and snippets.

@osanyin
Created October 26, 2017 01:42
Show Gist options
  • Select an option

  • Save osanyin/193b1e350e3eba74bf7058b8753f0ebc to your computer and use it in GitHub Desktop.

Select an option

Save osanyin/193b1e350e3eba74bf7058b8753f0ebc to your computer and use it in GitHub Desktop.
export function increment(number) {
return {
type: 'INCREMENT',
number
}
}
export function decrement(number) {
return {
type: 'DECREMENT',
number
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment