Created
June 17, 2016 14:54
-
-
Save dabit3/6e1cfcb32019e9eb68dae2be5a97c05e to your computer and use it in GitHub Desktop.
React Native Navigator Experimental Part 2 — Implementing Redux configureStore.js
This file contains 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
import { createStore } from 'redux' | |
import rootReducer from '../reducers' | |
export default function configureStore () { | |
const store = createStore(rootReducer) | |
if (module.hot) { | |
module.hot.accept(() => { | |
const nextRootReducer = require('../reducers/index').default | |
store.replaceReducer(nextRootReducer) | |
}) | |
} | |
return store | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment