This repository has been archived on 2025-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
Владислав Чикалкин 0a7a543934 partial success!
2020-08-27 14:03:39 +03:00

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;