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).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Name three React.Component lifecycle methods.

A
  1. componentDidMount()
  2. componentDidUpdate()
  3. componentWillUnmount()
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you pass data to a child component?

A

By setting up its “props” name and naming its value as its “this.state.(name of property)” or a variable surrounded by curly braces.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly