/* eslint-disable import/no-cycle */ import { enableStaticRendering } from 'mobx-react-lite'; import CalculationStore from './calculation'; import TablesStore from './tables'; import UserStore from './user'; enableStaticRendering(typeof window === 'undefined'); export default class RootStore { $user: UserStore; $calculation: CalculationStore; $tables: TablesStore; constructor() { this.$user = new UserStore(this); this.$calculation = new CalculationStore(this); this.$tables = new TablesStore(this); } }