Skip to content

Instantly share code, notes, and snippets.

@DmitryMasley
Created March 23, 2018 13:34
Show Gist options
  • Save DmitryMasley/8b98a6124ac3066974fad3a665159ae5 to your computer and use it in GitHub Desktop.
Save DmitryMasley/8b98a6124ac3066974fad3a665159ae5 to your computer and use it in GitHub Desktop.
Reducer
function(state = {
totalCount: 0,
items: []
}, action = {}) {
switch(action.type) {
case "GET_LIST":
case "ADD_ITEM":
case "REMOVE_ITEM":
case "UPDATE":
default:
return state;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment