Skip to content

Instantly share code, notes, and snippets.

@KucherenkoIhor
Created August 29, 2017 11:45
Show Gist options
  • Save KucherenkoIhor/e2f68ecc0e97d94bb97f57012e027d7f to your computer and use it in GitHub Desktop.
Save KucherenkoIhor/e2f68ecc0e97d94bb97f57012e027d7f to your computer and use it in GitHub Desktop.
function todoApp(state = initialState, action) {
switch (action.type) {
case SET_VISIBILITY_FILTER:
return { ...state, visibilityFilter: action.filter }
default:
return state
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment