What is JSX?
JSX is a syntax extension to JavaScript and is recommended to be used with React to describe what the UI should look like.
Why must the React object be imported when authoring JSX in a module?
JSX is essentially shorthand for React syntax and requires the React object.
How can you make Webpack and Babel work together to convert JSX into valid JavaScript?
Install the Babel loader for Webpack and then the Babel JSX plug-in.