Created
January 10, 2017 11:19
-
-
Save NetguruGist/38093719f6b8a1fe0403f3779b094589 to your computer and use it in GitHub Desktop.
This file contains 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 initialState = []; | |
export default (state = initialState, action) => { | |
switch (action.type) { | |
case 'FETCH_QUOTES_SUCCESS': | |
return [...state, ...action.data]; | |
default: | |
return state; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment