build(init):初始化构建项目。

This commit is contained in:
Vixalie
2025-07-21 21:55:59 +08:00
commit 7d94577ed2
44 changed files with 3990 additions and 0 deletions

5
src/index.tsx Normal file
View File

@@ -0,0 +1,5 @@
/* @refresh reload */
import { render } from "solid-js/web";
import App from "./App";
render(() => <App />, document.getElementById("root") as HTMLElement);