react-class-components Flashcards

1
Q

How do you create “class” component in React?

A
class name of class extends react.component{
render(){

return(jsx in here)
}
}

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

How do you access props in a class component?

A

prop. whatever your trying to access

this. props

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