claudqunwang's picture
Add Clare product UI: run_web.sh, README, exclude hf_space from push
c8c6034
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 />);