Me learning react like an absolute chungus
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
224B

  1. import DataStore from "./data/data-store";
  2. class RootStore{
  3. dataStore: DataStore;
  4. uiStore: UiStore;
  5. constructor(){
  6. this.dataStore = new DataStore(this);
  7. this.uiStore = new UiStore(this);
  8. }
  9. }