react-props-and-expressions Flashcards
1
Q
What are props in React?
A
objects that store jsx attributes and children
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}
3
Q
How do you write JavaScript expressions in JSX?
A
within curly braces {object.blah}