feat(web): bootstrap react vite tailwind shadcn stack

This commit is contained in:
2026-04-05 02:31:18 +08:00
parent d7f27eaf1e
commit 579d63d39d
25 changed files with 3986 additions and 11 deletions
+10
View File
@@ -0,0 +1,10 @@
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>
);