Created
September 28, 2020 04:31
-
-
Save itaditya/38ad922c4798459f3a5ea8d61af1eab9 to your computer and use it in GitHub Desktop.
(Blog) Build a Redux hooked app
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
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