neopy-yiutubedl / src /main.tsx
NeoPy's picture
Upload folder using huggingface_hub
9d69ba4 verified
raw
history blame contribute delete
266 Bytes
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./App.tsx";
const rootElement = document.getElementById("root");
if (!rootElement) {
throw new Error("Failed to find root element");
}
createRoot(rootElement).render(<App />);