Skip to content

Instantly share code, notes, and snippets.

@adrianfaciu
Created February 9, 2018 07:55
Show Gist options
  • Save adrianfaciu/cf7a16b492a3ee06b2a6bd9f21e61dea to your computer and use it in GitHub Desktop.
Save adrianfaciu/cf7a16b492a3ee06b2a6bd9f21e61dea to your computer and use it in GitHub Desktop.
const coreReducer = combineReducers(reducers, initialState);
const featureReducer = combineReducers(fromFeature.reducers, featureInitialState);
this.appState = {
...coreReducer(undefined, { type: 'INIT_STATE' }),
'featueModule': featureReducer(undefined, {type: 'INIT_STATE'}),
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment