12 lines
256 B
TypeScript
12 lines
256 B
TypeScript
import { enableStaticRendering } from 'mobx-react-lite';
|
|
import { UserStore } from './user';
|
|
|
|
enableStaticRendering(typeof window === 'undefined');
|
|
|
|
export class RootStore {
|
|
$user: UserStore;
|
|
constructor() {
|
|
this.$user = new UserStore(this);
|
|
}
|
|
}
|