Created
January 8, 2020 02:20
-
-
Save datner/878a315e2d552c68a2236866c12e23fa to your computer and use it in GitHub Desktop.
This file contains 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
const Thing = () => { | |
const [name, setName] = useState("Yuval Datner"); | |
return ( | |
<div> {name} </div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment