Last active
April 10, 2017 17:04
-
-
Save Temzasse/60975fd1ae4038c031520238bf3f5cc9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* 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