Last active
February 21, 2018 03:41
-
-
Save abohannon/e0564b2fd53e1bbcbe94b17ac380d134 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
const INITIAL_STATE = {}; | |
export default (state = INITIAL_STATE, action) => { | |
switch (action.type) { | |
case ACTION_TYPE: { | |
const newState = {}; | |
return {...state, ...newState}; | |
} | |
default: | |
return state; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment