Created
March 23, 2018 13:22
-
-
Save hugows/2ac057531acd6d3b9e60590ba28f48a5 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
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