Q. What does `useCallback` hook do?
β
Correct Answer: (B)
It memoizes a function to avoid unnecessary re-creation
Explanation: useCallback returns a memoized version of a callback that only changes if dependencies change.