Skip to content

Instantly share code, notes, and snippets.

@tetsuo
Created July 14, 2017 16:06
Show Gist options
  • Save tetsuo/5df506fe51e702e0ca5a86da13549c47 to your computer and use it in GitHub Desktop.
Save tetsuo/5df506fe51e702e0ca5a86da13549c47 to your computer and use it in GitHub Desktop.
xus-example-index-1
import { types } from "mobx-state-tree"
const Todo = types.model("Todo", {
title: types.string,
done: types.boolean
}, {
toggle: function() {
this.done = !this.done
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment