ChristopherJKoen's picture
Initial React Transcription
1643ce8
raw
history blame contribute delete
288 Bytes
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./index.css";
import "./components/report-editor";
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);