Skip to content

Instantly share code, notes, and snippets.

@chiefGui
Created March 8, 2017 15:27
Show Gist options
  • Save chiefGui/b64f07455af1a2af177f02970ab5d9cd to your computer and use it in GitHub Desktop.
Save chiefGui/b64f07455af1a2af177f02970ab5d9cd to your computer and use it in GitHub Desktop.
const todos = (state = INITIAL_STATE, action) => reswitch(
ADD_TODO,
[...state.todos, action.todo],
REMOVE_TODO,
() => state.todos.filter(todo => todo.id !== action.todo.id)
)(state, action.type)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment