Last active
July 29, 2018 08:31
-
-
Save sagiavinash/d8ae73a23ab3deb13dc36fd9e918ea3a to your computer and use it in GitHub Desktop.
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
// 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