Skip to content

Instantly share code, notes, and snippets.

@basarat
Created February 19, 2017 23:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save basarat/c137be9cdb46b784ef4b36cad7b3b3f8 to your computer and use it in GitHub Desktop.
Save basarat/c137be9cdb46b784ef4b36cad7b3b3f8 to your computer and use it in GitHub Desktop.
export class AppState {
@observable loggedIn = false;
@action setLoggedIn(value: boolean){
this.loggedIn = value;
}
}
// Don't want this executing again
export const appState = new AppState();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment