When does React call a component’s componentDidMount method?
Immediately after a component is mounted (inserted into the tree); right after the first time render is called.
Name three React.Component lifecycle methods.
componentDidMount(), componentDidUpdate(), componentWillUnmount()
How do you pass data to a child component?
Pass in data through props