react-jsx-Q&A Flashcards

1
Q

What is JSX?

A

JSX is a React extension to the JavaScript language syntax which provides a way to structure component rendering using syntax familiar to many developers.

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

All JSX gets convert to React.createElement calls, so it needs access to the React object

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

How can you make Webpack and Babel work together to convert JSX into valid JavaScript?

A

@babel/plugin-transform-react-jsx

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