fetch-in-react Flashcards
1
Q
When does React call a component’s componentDidMount method?
A
during mounting phase after the first successful render( )
2
Q
Name three React.Component lifecycle methods.
A
mounting-constructor( ), componentDidMount( ), render()
updating-componentDidUpdate( ), render( )
unmounting-componentWillUnmount( )
3
Q
How do you pass data to a child component?
A
props