Skip to content

Instantly share code, notes, and snippets.

@sagiavinash
Last active July 29, 2018 08:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sagiavinash/d8ae73a23ab3deb13dc36fd9e918ea3a to your computer and use it in GitHub Desktop.
Save sagiavinash/d8ae73a23ab3deb13dc36fd9e918ea3a to your computer and use it in GitHub Desktop.
// rootReducer.js
export default combineReducers({
a: reducerA,
b: reducerB
});
// store.js
import rootReducer from './rootReducer';
export default createStore(rootReducer);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment