What does fetch() return?
a promise which is fulfilled once the response to the fetch request is available
What is the default request method used by fetch()?
get
How do you specify the request method (GET, POST, etc.) when calling fetch?
the method property of the optional init argument
When does React call a component’s componentDidMount method?
immediately after a component is mounted
Name three React.Component lifecycle methods.
constructor(), render(), componentDidMount()
How do you pass data to a child component?
through props