Skip to content

Instantly share code, notes, and snippets.

@leslie-alldridge
Created January 27, 2019 07:47
Show Gist options
  • Save leslie-alldridge/c596b9e61bc51043c3b81ec42f5ac434 to your computer and use it in GitHub Desktop.
Save leslie-alldridge/c596b9e61bc51043c3b81ec42f5ac434 to your computer and use it in GitHub Desktop.
React State Example
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