UNPKG

mobx-create-stores

Version:

creates an object with MobX stores (+ links stores to routes)

9 lines (6 loc) 258 B
import { RouterStore, syncHistoryWithStore } from 'mobx-react-router'; export default (function (h) { var routerStore = new RouterStore(); var history = syncHistoryWithStore(h, routerStore); return { history: history, routerStore: routerStore }; });