When does React call a component’s componentDidMount method?
is invoked immediately after a component is mounted, after render is called for the first time
Name three React.Component lifecycle methods.
mounting, updating and unmounting// component did mount component did update and component will unmount
How do you pass data to a child component?
via props