UNPKG

mobx--awesome-connect

Version:

Not official React bindings for mobX, but performant and flexible

10 lines (9 loc) 203 B
import { observable } from 'mobx'; export default class Todo { id = Math.random(); @observable title; @observable finished = false; constructor(title) { this.title = title; } }