Gemma-4-WebGPU / src /main.jsx
shreyask's picture
Upload folder using huggingface_hub
d3c7f96 verified
raw
history blame contribute delete
234 Bytes
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./App.jsx";
import "./index.css";
createRoot(document.getElementById("root")).render(
<StrictMode>
<App />
</StrictMode>,
);