Section 25: Introduction to React and JSX Flashcards

1
Q

How does React get loaded on the page?

A

GET/

  • ->
    index. html

bundle.js (includes JS for framework)

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

What are composable Components?

A
  • Creating individual components that can duplicate and hold each other. They can be composed together to build one whole application.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Babel

A

A Transpiler: converts from one source code version to another.

JSX -> Vanilla JS

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

JSX

A

*evaluates anything contained inside of {}

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