Skip to content

Instantly share code, notes, and snippets.

@hugows
Created March 23, 2018 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hugows/2ac057531acd6d3b9e60590ba28f48a5 to your computer and use it in GitHub Desktop.
Save hugows/2ac057531acd6d3b9e60590ba28f48a5 to your computer and use it in GitHub Desktop.
export function items(state = [], action) {
switch (action.type) {
case 'ITEMS_FETCH_DATA_SUCCESS':
return action.items;
default:
return state;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment