Weird mob X
This commit is contained in:
parent
44c66dd781
commit
ac49492e17
7
MobXLearning/mobx_course/src/stores/data/data-store.ts
Normal file
7
MobXLearning/mobx_course/src/stores/data/data-store.ts
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
export default class DataStore{
|
||||||
|
todoStore: TodoStore;
|
||||||
|
|
||||||
|
constructor(rootStore: RootStore){
|
||||||
|
this.todoStore = new TodoStore(rootStore)
|
||||||
|
}
|
||||||
|
}
|
13
MobXLearning/mobx_course/src/stores/data/todo-store.ts
Normal file
13
MobXLearning/mobx_course/src/stores/data/todo-store.ts
Normal 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;
|
||||||
|
}
|
||||||
|
}
|
11
MobXLearning/mobx_course/src/stores/root-store.ts
Normal file
11
MobXLearning/mobx_course/src/stores/root-store.ts
Normal 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);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user