MiniSearch / client /index.tsx
github-actions[bot]
Sync from https://github.com/felladrin/MiniSearch
a284fa0
raw
history blame contribute delete
268 Bytes
import { createRoot } from "react-dom/client";
import { App } from "./components/App/App";
import { addLogEntry } from "./modules/logEntries";
createRoot(document.body.appendChild(document.createElement("div"))).render(
<App />,
);
addLogEntry("App initialized");