UNPKG

mobx-create-stores

Version:

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

15 lines (10 loc) 212 B
export default ({ Store, history = false } = {}) => { const store = new Store(); if (history && store.handleLocationChange) { history.subscribe(store.handleLocationChange); } return store; };