Skip to content

Instantly share code, notes, and snippets.

@js2me
Last active May 21, 2019 11:00
Show Gist options
  • Save js2me/18bb11b90fab68a7eda87b3d4e86afd7 to your computer and use it in GitHub Desktop.
Save js2me/18bb11b90fab68a7eda87b3d4e86afd7 to your computer and use it in GitHub Desktop.
// store.js
import { StonexStore } from 'stonex'
import modules from './modules'
import Logger from './modifiers/Logger'
import AppStateWorker from './common/AppStateWorker'
const storeConfiguration = {
modifiers: [ // middlewares
Logger
],
stateWorker: AppStateWorker
}
const store = new StonexStore(modules, storeConfiguration)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment