Q. What does `useRef` return?
β
Correct Answer: (A)
A mutable ref object with a current property
Explanation: useRef returns a mutable object whose .current property can hold a reference to a DOM node or value.