plane/web/store/root.store.ts

17 lines
284 B
TypeScript
Raw Normal View History

2024-03-04 14:39:46 +00:00
import { DataStore } from "./dataMaps";
2024-03-04 15:02:36 +00:00
import { IUserModel, UserModel } from "./user.store";
2024-03-04 14:39:46 +00:00
export class RootStore {
data: DataStore;
user: IUserModel;
constructor() {
this.data = new DataStore();
this.user = new UserModel(this.data);
}
2024-03-05 09:38:18 +00:00
resetOnSignOut() {}
2024-03-04 14:39:46 +00:00
}