When several components need to share the same changing data then it is recommended to lift the shared state up to their closest common ancestor. That means if two child components share the same data from its parent, then move the state to parent instead of maintaining local state in both of the child components.
Core React#24 · Questions adapted from sudheerj/reactjs-interview-questions (MIT)
What is Lifting State Up in React?
How well did you remember this?