feat: init
This commit is contained in:
14
apps/web/ce/store/root.store.ts
Normal file
14
apps/web/ce/store/root.store.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
// store
|
||||
import { CoreRootStore } from "@/store/root.store";
|
||||
import type { ITimelineStore } from "./timeline";
|
||||
import { TimeLineStore } from "./timeline";
|
||||
|
||||
export class RootStore extends CoreRootStore {
|
||||
timelineStore: ITimelineStore;
|
||||
|
||||
constructor() {
|
||||
super();
|
||||
|
||||
this.timelineStore = new TimeLineStore(this);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user