Initial commit

This commit is contained in:
2026-01-07 14:39:50 +08:00
commit 459c49ec41
30 changed files with 10501 additions and 0 deletions

6
src/main.tsx Normal file
View File

@@ -0,0 +1,6 @@
import {createRoot} from 'react-dom/client'
import {RouterProvider} from 'react-router-dom'
import routers from './router'
import './index.less'
createRoot(document.getElementById('root')!).render(<RouterProvider router={routers}/>)