Skip to content

Instantly share code, notes, and snippets.

@shanebdavis
Last active December 28, 2019 21:53
Show Gist options
  • Save shanebdavis/4769d97b518207a670d0a46067cc49cb to your computer and use it in GitHub Desktop.
Save shanebdavis/4769d97b518207a670d0a46067cc49cb to your computer and use it in GitHub Desktop.
modular-redux-tutorial list poart 4 inject reducer
// INJECT-REDUCERS INTO REDUX STORE
store.injectReducer(storeKey, (state = initialState, { type, payload }) =>
reducers[type] ? reducers[type](state, payload) : state
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment