Last active
October 28, 2018 23:07
-
-
Save haldarmahesh/4d162ae8507e9032bd5de7224fd142f7 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 countVariables = useState(0); // return two items in an array | |
const count = countVariables[0]; // first item from array | |
const setCount = countVariables[1]; // second item from array |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment