Problem Statement
Which of the following statements about props is true?
Explanation
Props are meant to be immutable. A child component should never modify them. If you need changeable data, use state instead. When the parent re-renders with new props, the child automatically gets updated values.
Practice Sets
This question appears in the following practice sets: