fetch in react Flashcards
1
Q
When does React call a component’s componentDidMount method?
A
is invoked immediately after a component is mounted, after render is called for the first time
2
Q
Name three React.Component lifecycle methods.
A
mounting, updating and unmounting// component did mount component did update and component will unmount
3
Q
How do you pass data to a child component?
A
via props