Skip to content

Instantly share code, notes, and snippets.

@syeo66
Created April 25, 2019 05:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save syeo66/2e79cd1fbc5a872e15a367758a202586 to your computer and use it in GitHub Desktop.
Save syeo66/2e79cd1fbc5a872e15a367758a202586 to your computer and use it in GitHub Desktop.
const [counter, setCounter] = useState(0);
const handleClick = () => {
setCounter(prevCounter => prevCounter + 1);
setCounter(prevCounter => prevCounter + 1);
}
console.log(counter);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment