You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GHHub/src/stores/Root.js

13 lines
262 B
JavaScript

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;