Weird mob X

This commit is contained in:
James McKenzie 2021-05-05 16:12:02 +12:00
parent 44c66dd781
commit ac49492e17
3 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,7 @@
export default class DataStore{
todoStore: TodoStore;
constructor(rootStore: RootStore){
this.todoStore = new TodoStore(rootStore)
}
}

View File

@ -0,0 +1,13 @@
import { observable } from "mobx";
class Todo{}
export default class TodoStore {
@observable
list: Todo[];
private rootStore: RootStore;
constructor(rootStore: RootStore){
this.rootStore = rootStore;
}
}

View File

@ -0,0 +1,11 @@
import DataStore from "./data/data-store";
class RootStore{
dataStore: DataStore;
uiStore: UiStore;
constructor(){
this.dataStore = new DataStore(this);
this.uiStore = new UiStore(this);
}
}