kioai / artifacts /image-gen /src /main.tsx
kinaiok
Initial deployment setup for Hugging Face Spaces
5ef6e9d
raw
history blame contribute delete
157 Bytes
import { createRoot } from "react-dom/client";
import App from "./App";
import "./index.css";
createRoot(document.getElementById("root")!).render(<App />);