Created
June 11, 2020 23:11
-
-
Save MelissaLobo/b06da6160a1db7824aa30cffedc7be59 to your computer and use it in GitHub Desktop.
Contador de cliques
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
import React, { useState } from 'react'; | |
function ContaClicks() { | |
const [contador, setContador] = useState(0); | |
return( | |
<div> | |
<p>Você clicou {contador} vezes </p> | |
<button onClick={() => setContador(contador + 1)}>clicar</button> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment