Initial commit from Create vite

This commit is contained in:
Eamon
2026-07-24 18:00:22 +08:00
commit 0361853732
79 changed files with 4803 additions and 0 deletions

12
src/main.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { StrictMode } from "react"
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(
<StrictMode>
<App />
</StrictMode>,
)