Skip to content

Instantly share code, notes, and snippets.

@basekays
Created June 1, 2018 19:06
Show Gist options
  • Select an option

  • Save basekays/656ed7d79451d5abe8a0923dd6dd9836 to your computer and use it in GitHub Desktop.

Select an option

Save basekays/656ed7d79451d5abe8a0923dd6dd9836 to your computer and use it in GitHub Desktop.
export default function (state = INITIAL_STATE, action = {}) {
const {
type,
wishlistItem,
} = action;
switch (type) {
case ADD_TO_WISHLIST_SUCCESS:
return {
...state,
index: [...state.index, {
wishlistItem,
}],
};
default:
return state;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment