[WEB-2413] chore: admin application restructuring. (#5557)

This commit is contained in:
Prateek Shourya
2024-09-09 17:43:56 +05:30
committed by GitHub
parent fe280b2beb
commit 8cf1c2d136
13 changed files with 52 additions and 29 deletions

View File

@@ -0,0 +1,19 @@
import { enableStaticRendering } from "mobx-react";
// stores
import { CoreRootStore } from "@/store/root.store";
enableStaticRendering(typeof window === "undefined");
export class RootStore extends CoreRootStore {
constructor() {
super();
}
hydrate(initialData: any) {
super.hydrate(initialData);
}
resetOnSignOut() {
super.resetOnSignOut();
}
}