hcornet 506716e703
Some checks failed
Deployment Verification / deploy-and-test (push) Failing after 29s
first sync
2025-03-04 07:59:21 +01:00

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();