What is JSX?
A syntax extension to JavaScript that produces React “elements”
Why must the React object be imported when authoring JSX in a module?
JSX is just syntactic sugar for react.createElement calls.
How can you make Webpack and Babel work together to convert JSX into valid JavaScript?
Use a loader (not sure on this one)