chore: create extended root store (#4796)

* chore: create extended root store

* chore: rename core root store
This commit is contained in:
Aaryan Khandelwal 2024-06-13 13:27:13 +05:30 committed by GitHub
parent d81a476e0b
commit 703aac597c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
36 changed files with 103 additions and 65 deletions

View file

@ -0,0 +1,8 @@
// store
import { CoreRootStore } from "@/store/root.store";
export class RootStore extends CoreRootStore {
constructor() {
super();
}
}