import { makeAutoObservable } from "mobx"; import Plan from "./Plan"; import Auth from "./Auth"; class Root { constructor() { this.plan = new Plan(this); this.auth = new Auth(this); makeAutoObservable(this); } } export default Root;