Skip to content

Instantly share code, notes, and snippets.

@GeorgeWL
Created April 11, 2019 12:08
Show Gist options
  • Save GeorgeWL/a6e2befae60ed1cc59fe5caea9883d71 to your computer and use it in GitHub Desktop.
Save GeorgeWL/a6e2befae60ed1cc59fe5caea9883d71 to your computer and use it in GitHub Desktop.
mobx.ts
export Class TestStore{
private isTest:boolean=false;
@computed
public get IsTest():boolean {
return this.isTest;
}
@action setTest(state: boolean){
this.isTest = state;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment