Me learning react like an absolute chungus
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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. }