I'm getting started with reactJS.
import React from 'react';
import ReactDOM from 'react-dom';
var App = ()=>{
return <div> Hello !!</div>
}
ReactDOM.render(<App />, document.getElementById('root'));
In every tutorial or project, everyone is doing import React from 'react';, but nobody is using React in the current file index.js.