Q. What is returned by the useState hook?
β
Correct Answer: (C)
An array with current state and setter function
Explanation: useState returns a pair: current state and a function to update it.