Skip to content

Instantly share code, notes, and snippets.

@Louiefigz
Created May 25, 2017 15:04
Show Gist options
  • Save Louiefigz/488a035c81bd5939d161c0508a235723 to your computer and use it in GitHub Desktop.
Save Louiefigz/488a035c81bd5939d161c0508a235723 to your computer and use it in GitHub Desktop.
//TaskAction.js
//We are packaging the data for the reducer.
export const addTask = (task) => {
return {
type: 'ADD_TASK',
task
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment