What is JSX?
it provides the syntactic sugar for React.createElement(component,props,children) function
Why must the React object be imported when authoring JSX in a module?
Since JSX compiles into calls to React.createElement, the React library must also always be in scope from your JSX code.
How can you make Webpack and Babel work together to convert JSX into valid JavaScript?
use babel loader with Webpack installed