Files
outline/frontend/stores/index.js
2017-05-29 19:54:36 -07:00

14 lines
278 B
JavaScript

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