Skip to content

Instantly share code, notes, and snippets.

@dabit3
Created June 17, 2016 14:54
Show Gist options
  • Save dabit3/6e1cfcb32019e9eb68dae2be5a97c05e to your computer and use it in GitHub Desktop.
Save dabit3/6e1cfcb32019e9eb68dae2be5a97c05e to your computer and use it in GitHub Desktop.
React Native Navigator Experimental Part 2 — Implementing Redux configureStore.js
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