react-props-and-expressions-Q&A Flashcards

1
Q

What are props in React?

A

stands for properties and is being used for passing data from one component to another.

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

return <h1>Hello, {props.name}</h1>;
Within the return statement you define where the props go, then you can define the props within instances of your components

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

surround the JavaScript code in { } brackets.

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