CoolFace
Apppublic

GetSoloTech/solo-conversational-webgpu

sourceHugging Faceupdated 1y agoView on Hugging Face
1likes
main.jsx11 linesDownload Raw Back to src
1import { StrictMode } from "react";2import { createRoot } from "react-dom/client";3import "./index.css";4import App from "./App.jsx";5 6createRoot(document.getElementById("root")).render(7  <StrictMode>8    <App />9  </StrictMode>,10);11