Created
June 29, 2017 21:43
-
-
Save aaronblondeau/2ad1f91525ac1baaef6e0942004d7f1c to your computer and use it in GitHub Desktop.
Initial version of where2ride app state (with MobX)
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 {observable} from 'mobx'; | |
class ApplicationState { | |
@observable clicks = 0; | |
} | |
const state = new ApplicationState() | |
export default state |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment