We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3e43af commit 221baa7Copy full SHA for 221baa7
src/content/1/ptbr/part1c.md
@@ -665,9 +665,9 @@ const App = () => {
665
return (
666
<div>
667
<Exibir contador={contador} />
668
- <Botao handleClique={aumentarEmUm} texto="mais+" />
669
- <Botao handleClique={zerarContador} texto="zerar" />
670
- <Botao handleClique={diminuirEmUm} texto="menos-" />
+ <Botao onClick={aumentarEmUm} texto="mais+" />
+ <Botao onClick={zerarContador} texto="zerar" />
+ <Botao onClick={diminuirEmUm} texto="menos-" />
671
</div>
672
)
673
}
0 commit comments