Created
September 28, 2020 04:30
-
-
Save itaditya/b0686be54d2a8fe5db7a3173e4cbb5c5 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
const initialState = { | |
diet: 'all', | |
menuById: {}, | |
menuIdList: { | |
all: [], | |
veg: [], | |
}, | |
cartByIds: {}, | |
} | |
function foodReducer(state = initialState, action) { | |
// rest of the code | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment