ClareVoice / web /src /main.tsx
claudqunwang's picture
Switch to React product UI: server.py, web/, Dockerfile, FastAPI deps (PNG as normal blobs)
02cf9c7
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 />);