fix;发版

This commit is contained in:
ljy
2026-07-29 22:22:10 +08:00
parent 7b98dadc43
commit 344920fd5d
123 changed files with 10997 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>,
)