Skip to content

Instantly share code, notes, and snippets.

@aaronblondeau
Created June 29, 2017 21:43
Show Gist options
  • Save aaronblondeau/2ad1f91525ac1baaef6e0942004d7f1c to your computer and use it in GitHub Desktop.
Save aaronblondeau/2ad1f91525ac1baaef6e0942004d7f1c to your computer and use it in GitHub Desktop.
Initial version of where2ride app state (with MobX)
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