Files
outline/app/stores/index.js
2018-05-31 11:42:39 -07:00

17 lines
377 B
JavaScript

// @flow
import AuthStore from './AuthStore';
import UiStore from './UiStore';
import DocumentsStore from './DocumentsStore';
import SharesStore from './SharesStore';
const ui = new UiStore();
const stores = {
user: null, // Including for Layout
auth: new AuthStore(),
ui,
documents: new DocumentsStore({ ui }),
shares: new SharesStore(),
};
export default stores;