SumAI-Search / client /index.tsx
github-actions[bot]
Sync to HuggingFace Spaces
6b3405c
raw
history blame contribute delete
268 Bytes
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");