build: 初始化构建前端

This commit is contained in:
2026-05-23 12:30:06 +08:00
parent 03266b58c9
commit 3be7e08162
9 changed files with 1943 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)