- When should you inherit component state?
- Only when you have many different components that all share the same state structure, but render different output
- What is a higher-order component?
- A component that returns another component
- If you inherit JSX from a component, what should you override?
- You can pass new state values to the inherited component inĀ componentDidMount().