What does fetch() return?
a promise
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 inserted into the DOM tree. after the render phase
Name three React.Component lifecycle methods.
constructor, render, componentDidMount
How do you pass data to a child component?
props