Last active
November 19, 2019 06:41
-
-
Save JOSHIMOH/c806a9519b396fed7a5cc4378996af50 to your computer and use it in GitHub Desktop.
Mobx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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