17 lines
395 B
TypeScript
17 lines
395 B
TypeScript
import Elements from "core/config/elements";
|
|
import { action, observable } from "mobx";
|
|
import StatusStore from "./StatusStore";
|
|
import ValuesStore from "./ValuesStore";
|
|
|
|
class CalculationStore {
|
|
statusStore: StatusStore;
|
|
valuesStore: ValuesStore;
|
|
|
|
constructor() {
|
|
this.statusStore = new StatusStore();
|
|
this.valuesStore = new ValuesStore();
|
|
}
|
|
}
|
|
|
|
export default CalculationStore;
|