Skip to content

Instantly share code, notes, and snippets.

@ysfzrn
Created October 2, 2017 06:44
Show Gist options
  • Save ysfzrn/af453272c580b61e9e33f1045a07a9a0 to your computer and use it in GitHub Desktop.
Save ysfzrn/af453272c580b61e9e33f1045a07a9a0 to your computer and use it in GitHub Desktop.
import mobx, { observable } from "mobx";
class Store {
@observable todos=[];
@observable selectedStatus="all";
}
const todoStore = new Store()
export default todoStore;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment