@ozo/react-rock
Version:
React 移动端开发脚手架,基于CRA3,通用、开箱即用。
18 lines (15 loc) • 378 B
JavaScript
/**
* 业务Stores整合
*/
import UserStore from './UserStore';
import UIStore from './UIStore';
import DemoListStore from './demoListStore';
class RootStore {
constructor() {
this.UIStore = new UIStore(this);
this.userStore = new UserStore(this);
this.demoListStore = new DemoListStore(this);
}
}
export {};
export default new RootStore();