JSX Flashcards

1
Q

What is JSX?

A

a syntax extension to JavaScript

JSX produces React “elements”. Lets you put XML into the JavaScript code.

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

This only applies for older version of React

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

in devDependencies

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