quick-tip
React's useState(...) Hook
Consider this line of code: //Source: https://reactjs.org/docs/hooks-state.html const [count, setCount] = useState(0); How the heck does this work? I threw together a quick test which is shown below. Turns out, the parameter - 0 - is the initial state. The second parameter coming out of