What does fetch() return?
returns a promise that is for response at all that rejects when a real failure occurs
What is the default request method used by fetch()?
GET
How do you specify the request method (GET, POST, etc) when calling fetch?
{ method: ‘POST’ }
When does React call a component’s componentDidMount method?
Immediately after a component is mounted on the DOM
Name three React.Component lifecycle methods.
mounting (componentDidMount() , constructor() , render()), updating (render(), componentDidUpdate() ), unmounting (componentWillUnmount())
How do you pass data to a child component?
through its props