Skip to content

Instantly share code, notes, and snippets.

@ShMcK
Created February 26, 2018 15:34
Show Gist options
  • Save ShMcK/d971c87c6f1ab6aae8386b38dd1d51e9 to your computer and use it in GitHub Desktop.
Save ShMcK/d971c87c6f1ab6aae8386b38dd1d51e9 to your computer and use it in GitHub Desktop.
Reducer Example
const countReducer = (state, action) => {
switch(action.type) {
case INCREMENT:
return state + action.payload
case DECREMENT:
return state - action.payload
default:
return state
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment