Skip to content

Instantly share code, notes, and snippets.

View CoryDanielson's full-sized avatar
🍩

Cory Danielson CoryDanielson

🍩
View GitHub Profile
@CoryDanielson
CoryDanielson / actions.js
Created May 24, 2016 21:57
Redux reducer with dispatch table
export const ActionTypes = {
ADD_TODO: 'ADD_TODO',
REMOVE_TODO: 'REMOVE_TODO'
};
export function addTodo(todo) {
return { type: ActionTypes.ADD_TODO, payload: { todo } };
}
export function removeTodo(todo) {