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')
);
function Hello() {
return <div>Helloe LANGGA!</div>; // this is call components not function in react
}
ReactDOM.render(
<Hello/>, document.getElementById('mountNode') // Hello line is a call sign form Hello Components
);