Skip to content

Instantly share code, notes, and snippets.

@shubhang93
Created October 25, 2018 17:33
Show Gist options
  • Save shubhang93/62e86a44c834c1dbac27fc604fc3ea55 to your computer and use it in GitHub Desktop.
Save shubhang93/62e86a44c834c1dbac27fc604fc3ea55 to your computer and use it in GitHub Desktop.
mobx-caveats
const message = mobx.observable({
title: "Foo",
author: {
name: "Michel"
},
likes: [
"John", "Sara"
]
})
mobx.autorun(()=>{
console.log(message)
mobx.trace()
})
<script src="https://unpkg.com/mobx@5.5.2/lib/mobx.umd.js"></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment