React Flashcards

1
Q

What is JSX

A

JavaScript Syntax Extension, a way to write html in JS

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

Why must the React object be imported when authoring JSX in a module?

A

So you can write React functions and to write html in JavaScript

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

What is a React component?

A

A tag that can return elements

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

How do you define a function component in React

A
Function Comp () {
context 
}
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you mount a component to the DOM

A

using jsx,

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