function Hello() { return <div>Helloe React!</div>; // THis line is JSX not HTML. //Babel converts JSX to React API calls } ReactDOM.render( <Hello />, document.getElementById('mountNode') );