Last active
March 30, 2019 17:58
-
-
Save marvinjude/ba18a4b5e6cbddfc8311eec621d291de to your computer and use it in GitHub Desktop.
bio
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
| 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