PythonicRAG / src /main.tsx
thomfoolery's picture
fullstack solution chatface
ddaa426
raw
history blame contribute delete
223 Bytes
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./components/App.tsx";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>
);