Last active
February 23, 2019 17:55
-
-
Save advorkina/fe03cf9246b48a14afa12f9ed5df1b36 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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