DocSpace-client/web/ASC.Web.Common/src/store/index.js

11 lines
348 B
JavaScript
Raw Normal View History

import { default as auth } from "./auth";
import ModuleStore from "./ModuleStore";
import UserStore from "./UserStore";
import SettingsStore from "./SettingsStore";
const moduleStore = new ModuleStore();
const userStore = new UserStore();
const settingsStore = new SettingsStore();
export default { auth, moduleStore, userStore, settingsStore };