What is JSX ?
JSX is a JavaScript Extension Syntax used in React to easily write HTML and JavaScript together.
What tool do we use to convert JSX to a format the browser can understand?
Babel which is a JavaScript compiler/transpiler
What does JSX get converted into? clue - there are 2 conversions.
JSX is converted to a React.createElement call and it’s then converted to its object representation.