answer/ui/src/stores/index.ts

14 lines
286 B
TypeScript
Raw Normal View History

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