fix: 优化数据

This commit is contained in:
Daniel
2026-03-02 11:28:13 +08:00
parent 4a8fff5a00
commit 004d10b283
39 changed files with 1106 additions and 56 deletions

View File

@@ -1,4 +1,6 @@
import { Routes, Route } from 'react-router-dom'
import { Dashboard } from '@/pages/Dashboard'
import { DbDashboard } from '@/pages/DbDashboard'
function App() {
return (
@@ -6,7 +8,10 @@ function App() {
className="min-h-screen w-full bg-military-dark overflow-hidden"
style={{ background: '#0A0F1C' }}
>
<Dashboard />
<Routes>
<Route path="/" element={<Dashboard />} />
<Route path="/db" element={<DbDashboard />} />
</Routes>
</div>
)
}