fetch-in-react Flashcards
1
Q
When does React call a component’s componentDidMount method?
A
Immediately after a component is mounted (inserted into the tree); right after the first time render is called.
2
Q
Name three React.Component lifecycle methods.
A
componentDidMount(), componentDidUpdate(), componentWillUnmount()
3
Q
How do you pass data to a child component?
A
Pass in data through props