When does React call a component’s componentDidMount method?
during mounting phase after the first successful render( )
Name three React.Component lifecycle methods.
mounting-constructor( ), componentDidMount( ), render()
updating-componentDidUpdate( ), render( )
unmounting-componentWillUnmount( )
How do you pass data to a child component?
props