rsnext/examples/with-refnux/store/getStore.js

16 lines
359 B
JavaScript
Raw Normal View History

2017-02-21 05:13:05 +01:00
import { createStore } from 'refnux'
const storeInitialState = { counter: 0, key: 'value' }
const getStore = () => {
let store = null
if (typeof window == 'undefined') {
store = createStore(storeInitialState)
} else {
store = window.store || createStore(storeInitialState)
window.store = store
}
return store
}
export default getStore