Skip to content

Instantly share code, notes, and snippets.

@NetguruGist
Created January 10, 2017 11:19
Show Gist options
  • Save NetguruGist/38093719f6b8a1fe0403f3779b094589 to your computer and use it in GitHub Desktop.
Save NetguruGist/38093719f6b8a1fe0403f3779b094589 to your computer and use it in GitHub Desktop.
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