rsnext/examples/with-refnux/store/getStore.js
2017-02-20 20:13:05 -08:00

16 lines
No EOL
359 B
JavaScript

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