Q. In React, which statement about props is correct?
β
Correct Answer: (A)
Props are read-only and should not be modified by the component receiving them
Explanation: Props are immutable from the perspective of the child component.