The React philosophy is that props should be immutable(read only) and top-down. This means that a parent can send any prop values to a child, but the child can't modify received props.
Core React#67 · Questions adapted from sudheerj/reactjs-interview-questions (MIT)
Why can't you update props in React?
How well did you remember this?