Skip to content

Instantly share code, notes, and snippets.

@marcusradell
Created April 11, 2017 10:42
Show Gist options
  • Save marcusradell/56664f996acde2c8dc84e04bbc6d24b2 to your computer and use it in GitHub Desktop.
Save marcusradell/56664f996acde2c8dc84e04bbc6d24b2 to your computer and use it in GitHub Desktop.
function reduce (state = initialState, action) {
switch (action.type) {
case types.add:
// ...
default:
return state
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment