Skip to content

Instantly share code, notes, and snippets.

@marvinjude
Last active March 30, 2019 17:58
Show Gist options
  • Select an option

  • Save marvinjude/ba18a4b5e6cbddfc8311eec621d291de to your computer and use it in GitHub Desktop.

Select an option

Save marvinjude/ba18a4b5e6cbddfc8311eec621d291de to your computer and use it in GitHub Desktop.
bio
function Bio(){
let[name, SetName] = useState("Mary Gbebodyee");
let[age, SetAge] = useState(29);
function setNameHandler(){
setName("Mary Zlatan")
}
return(
<div>
<h1>{name}</h1>
<h1>{age}</h1>
<button onClick={setNameHandler}>Change Name </button>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment