Spaces:
Sleeping
Sleeping
File size: 268 Bytes
6b3405c |
1 2 3 4 5 6 7 8 9 10 |
import { createRoot } from "react-dom/client";
import { addLogEntry } from "./modules/logEntries";
import { App } from "./components/App/App";
createRoot(document.body.appendChild(document.createElement("div"))).render(
<App />,
);
addLogEntry("App initialized");
|