Me learning react like an absolute chungus
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

11 satır
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. }