Skip to content

Instantly share code, notes, and snippets.

@advorkina
Last active February 23, 2019 17:55
Show Gist options
  • Select an option

  • Save advorkina/fe03cf9246b48a14afa12f9ed5df1b36 to your computer and use it in GitHub Desktop.

Select an option

Save advorkina/fe03cf9246b48a14afa12f9ed5df1b36 to your computer and use it in GitHub Desktop.
import { action, observable } from 'mobx';
class ObservableStore {
@observable property = '';
@action setProperty(newProperty: string) {
this.property = newProperty;
}
}
const observableStore = new ObservableStore();
export default observableStore;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment