Q. In which hook can you initialize state from props?
β
Correct Answer: (A)
useState
Explanation: You can use `useState(() => props.value)` to initialize state from props.