When does React call a component’s componentDidMount method?
after the component has been rendered for the first time in the DOM.
Name three React.Component lifecycle methods.
componentDidMount, componentDidUpdate, componentWillUnmount
How do you pass data to a child component?
by using props