Created
June 18, 2022 08:05
-
-
Save GuillaumeDaviid/bf3fb454b9b6b56d6666f9e792ef878e to your computer and use it in GitHub Desktop.
react composant : example 3
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
| function Example() { | |
| const [count, setCount] = useState(0); | |
| return ( | |
| <div> | |
| <p>count: {count}</p> | |
| <button onClick={() => setCount(count + 1)}>Click</button> | |
| </div> | |
| ); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment