Created
January 27, 2019 07:47
-
-
Save leslie-alldridge/c596b9e61bc51043c3b81ec42f5ac434 to your computer and use it in GitHub Desktop.
React State Example
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
state = { | |
string: "This is a message saved in state", | |
object: { | |
key: 1, | |
value: "My favourite car manufacturer is Honda" | |
}, | |
number: 1, | |
array: [1, 2, 3], | |
function: () => { | |
alert("you run the function"); | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment