Skip to content

Instantly share code, notes, and snippets.

@datner
Created January 8, 2020 02:20
Show Gist options
  • Save datner/878a315e2d552c68a2236866c12e23fa to your computer and use it in GitHub Desktop.
Save datner/878a315e2d552c68a2236866c12e23fa to your computer and use it in GitHub Desktop.
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