LFM2-WebGPU / src /main.tsx
mlabonne's picture
Add demo source code (#1)
68185ce verified
raw
history blame contribute delete
235 Bytes
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./App.tsx";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>,
);