Skip to content

Instantly share code, notes, and snippets.

@Louiefigz
Last active May 22, 2017 21:37
Show Gist options
  • Save Louiefigz/7ea989b098524e8211b93c54220a9adf to your computer and use it in GitHub Desktop.
Save Louiefigz/7ea989b098524e8211b93c54220a9adf to your computer and use it in GitHub Desktop.
export default function manageTasks(state = {
tasks: [],
}, action){
switch (action.type) {
case 'ADD_TASK':
return Object.assign({}, state, {
tasks: state.tasks.concat(action.task)
});
default:
return state;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment