Skip to content

Instantly share code, notes, and snippets.

@JOSHIMOH
Last active November 19, 2019 06:41
Show Gist options
  • Select an option

  • Save JOSHIMOH/c806a9519b396fed7a5cc4378996af50 to your computer and use it in GitHub Desktop.

Select an option

Save JOSHIMOH/c806a9519b396fed7a5cc4378996af50 to your computer and use it in GitHub Desktop.
Mobx
let user = Observable ({
id = '123',
name= "mohit",
}
);
class user {
@observable user;
constructor (user){
this.user = user; }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment