AI_Agent_V4 / web /src /main.tsx
SarahXia0405's picture
Upload 77 files
198828b verified
raw
history blame contribute delete
172 Bytes
import { createRoot } from "react-dom/client";
import App from "./App.tsx";
import "./index.css";
createRoot(document.getElementById("root")!).render(<App />);