When does React call a component’s componentDidMount method?
in the commit phase of the mounting phase
only after the first render
Name three React.Component lifecycle methods.
componentDidMount, componentDidUpdate, componentWillUnmount, constructor(), render()
How do you pass data to a child component?
by passing data as a prop