This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
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;