answer/ui/src/stores/index.ts

14 lines
298 B
TypeScript
Raw Normal View History

2022-09-27 17:59:05 +08:00
import toastStore from './toast';
2022-10-29 20:43:52 +08:00
import loggedUserInfoStore from './userInfo';
2022-09-27 17:59:05 +08:00
import globalStore from './global';
import siteInfoStore from './siteInfo';
import interfaceStore from './interface';
export {
toastStore,
2022-10-29 20:43:52 +08:00
loggedUserInfoStore,
2022-09-27 17:59:05 +08:00
globalStore,
siteInfoStore,
interfaceStore,
};