template: added cloudflare vite hybrid template

This commit is contained in:
dswbx
2025-11-21 17:55:24 +01:00
parent 9e7547e787
commit 000f8d20a8
27 changed files with 10092 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./App.tsx";
import { ClientProvider } from "bknd/client";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<ClientProvider>
<App />
</ClientProvider>
</StrictMode>
);