When does React call a component’s componentDidMount method?
Immediately after a component is mounted (inserted into the tree).
Name three React.Component lifecycle methods.
How do you pass data to a child component?
By setting up its “props” name and naming its value as its “this.state.(name of property)” or a variable surrounded by curly braces.