fetch-in-react Flashcards
1
Q
When does React call a component’s componentDidMount method?
A
Only once, right after the first time the render() method is called.
2
Q
Name three React. Component lifecycle methods.
A
Mounting, Updating, and Unmounting
3
Q
How do you pass data to a child component?
A
Props.