15 lines
335 B
TypeScript
15 lines
335 B
TypeScript
import CalculationStore from "./CalculationStore";
|
|
import CommonStore from "client/stores/CommonStore";
|
|
|
|
class RootStore {
|
|
calculationStore: CalculationStore;
|
|
commonStore: CommonStore;
|
|
|
|
constructor() {
|
|
this.calculationStore = new CalculationStore();
|
|
this.commonStore = new CommonStore();
|
|
}
|
|
}
|
|
|
|
export default RootStore;
|