import React from 'react';
import ReactDOM from 'react-dom';
function Hello() {
return <h1>Hello, world!</h1>;
}
// Render the App component
// into the root element
const root = ReactDOM.createRoot(
document.getElementById("root")
);
root.render(<Hello />);