React Flashcards

1
Q

Props

A

a way of passing data from parent to child

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

Virtual DOM

A

Data structure stored by React that tracks changes from one render state to the next. If something changes from one render to the next the browsers DOM is updated

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

State

A

is an object that represents the parts of the app that can change. Each component can maintain its own state, which lives in an object called this.state

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