Skip to content

Instantly share code, notes, and snippets.

@syeo66
Created April 25, 2019 05:35
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/2875f6d8df26ee400a695d2c0c92ddc4 to your computer and use it in GitHub Desktop.
Save syeo66/2875f6d8df26ee400a695d2c0c92ddc4 to your computer and use it in GitHub Desktop.
A small snippet of a counter using useState()
const [counter, setCounter] = useState(0);
const handleClick = () => setCounter(counter + 1);
console.log(counter);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment