Skip to content

Instantly share code, notes, and snippets.

@itaditya
Created September 28, 2020 04:31
Show Gist options
  • Save itaditya/38ad922c4798459f3a5ea8d61af1eab9 to your computer and use it in GitHub Desktop.
Save itaditya/38ad922c4798459f3a5ea8d61af1eab9 to your computer and use it in GitHub Desktop.
(Blog) Build a Redux hooked app
function foodReducer(state = initialState, action) {
switch (action.type) {
case ACTIONS.CHANGE_DIET: {
const { diet } = state;
const newDiet = diet === 'veg' ? 'all' : 'veg';
return {
...state,
diet: newDiet,
cartByIds: {},
};
}
// other cases
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment