Skip to content

Instantly share code, notes, and snippets.

@alexkuttig
Created September 26, 2022 09:47
Show Gist options
  • Save alexkuttig/7636292df02b844cdc75773dd99a3425 to your computer and use it in GitHub Desktop.
Save alexkuttig/7636292df02b844cdc75773dd99a3425 to your computer and use it in GitHub Desktop.
Chapter 1 - 7
function Counter () {
const [numClicks, setNumClicks] = useState(0);
return (
<div>
<p>You have clicked {numClicks} times!</>
<button onClick={() => setNumClicks(numClicks+1)>
Click Me
</button>
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment