react-props-and-expressions Flashcards

1
Q

What are props in React?

A

objects that store jsx attributes and children

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

How do you pass props to a component?

A

it goes next to the react element type
syntax is the same as an html attribute/value pair
if value is not a string it must go in a javascript expression {object.blah}

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

How do you write JavaScript expressions in JSX?

A

within curly braces {object.blah}

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