This commit is contained in:
2023-09-03 16:05:52 +08:00
commit c4211ddf7c
28 changed files with 1740 additions and 0 deletions

12
src/App.tsx Normal file
View File

@@ -0,0 +1,12 @@
import React from 'react'
import router from '@/router'
const App: React.FC = () => {
return (
<>
<RouterProvider router={router} />
</>
)
}
export default App