Skip to content

Instantly share code, notes, and snippets.

@Temzasse
Last active April 10, 2017 17:04
Show Gist options
  • Save Temzasse/60975fd1ae4038c031520238bf3f5cc9 to your computer and use it in GitHub Desktop.
Save Temzasse/60975fd1ae4038c031520238bf3f5cc9 to your computer and use it in GitHub Desktop.
/*
* EDIT DUCKS
*/
const initialState = {
// edit stuff here
};
export default function reducer(state = initialState, action = {}) {
switch (action.type) {
case "SOMETHING_EDIT_RELATED":
...
default:
return state;
}
}
// export named Actions, Selectors, Thunks, Sagas...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment