What has been learned about passing information between components?
How to pass information down explicitly with props and how to pass information up implicitly with callback handlers.
What is the purpose of the callback handler in this context?
It helps keep an open communication channel from the child component (Search) to the parent component (App).
What is the process of moving state from one component to another called?
Lifting state.
How is lifting state accomplished?
State is managed in parent component. A callback function is passed down via props to child component . This callback function then manages the state in the parent component
What is Lifting State?
The process of moving state from one component to another