Last active
August 8, 2021 10:33
-
-
Save DJanoskova/d4ec39908a871d7aadf5c04e597e126b to your computer and use it in GitHub Desktop.
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
| const [counter, setCounter] = useState(0) | |
| const handleIncrement = () => { | |
| setCounter(prev => prev + 1) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment