Created
January 3, 2019 01:12
-
-
Save phsantiago/74486182a45b104d4868390cc4bbcb89 to your computer and use it in GitHub Desktop.
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
import { useState } from 'react'; | |
function Gato() { | |
const [idade, setIdade] = useState(3); | |
return ( | |
<div> | |
<p>Este gato tem {idade} anos</p> | |
<button onClick={() => setIdade(count + 1)}> | |
Clique aqui para envelhecer o bixano | |
</button> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment