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.

14 line
235B

  1. import { observable } from "mobx";
  2. class Todo{}
  3. export default class TodoStore {
  4. @observable
  5. list: Todo[];
  6. private rootStore: RootStore;
  7. constructor(rootStore: RootStore){
  8. this.rootStore = rootStore;
  9. }
  10. }