Created
September 26, 2022 09:47
-
-
Save alexkuttig/7636292df02b844cdc75773dd99a3425 to your computer and use it in GitHub Desktop.
Chapter 1 - 7
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
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