Skip to content

Instantly share code, notes, and snippets.

@unk
Created July 1, 2018 13:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unk/d292b917c8cabc08bff41956bdb147a4 to your computer and use it in GitHub Desktop.
Save unk/d292b917c8cabc08bff41956bdb147a4 to your computer and use it in GitHub Desktop.
import { decorate, observable } from "mobx"
class Todo {
id = Math.random();
title = "";
finished = false;
}
decorate( Todo, {
title: observable,
finished: observable
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment