Some checks failed
Deployment Verification / deploy-and-test (push) Failing after 29s
17 lines
356 B
JavaScript
17 lines
356 B
JavaScript
import React from "react";
|
|
import { createRoot } from "react-dom/client";
|
|
import App from "./App";
|
|
|
|
//import "./index.css";
|
|
//import reportWebVitals from "./reportWebVitals";
|
|
|
|
const rootElement = document.getElementById("root");
|
|
const root = createRoot(rootElement);
|
|
root.render(
|
|
<React.Fragment>
|
|
<App />
|
|
</React.Fragment>
|
|
);
|
|
|
|
//reportWebVitals();
|