plane/web/ce/store/root.store.ts
Aaryan Khandelwal 703aac597c
chore: create extended root store (#4796)
* chore: create extended root store

* chore: rename core root store
2024-06-13 13:27:13 +05:30

9 lines
146 B
TypeScript

// store
import { CoreRootStore } from "@/store/root.store";
export class RootStore extends CoreRootStore {
constructor() {
super();
}
}