Don’t know what to google to get documentation and understand what I’m seeing :
Source is in React docs, declaring a state variable : https://reactjs.org/docs/hooks-state.html#declaring-a-state-variable
Here is the Syntax : const [count, setCount] = useState(0)
What is this way of declaring a const called?