npm install
npm start
import React from 'react'
import ReactDOM from 'react-dom'
const App = () => {
return(
<h1>Hello</h1>
)
}
ReactDOM.render(<App/>,document.getElementById('root'))
<html>
<body>
<div id="root"/>
</body>
</html>