Initial commit: ONE-OS project

Made-with: Cursor
This commit is contained in:
王冕
2026-02-27 18:11:40 +08:00
commit 09cc45db36
47 changed files with 17589 additions and 0 deletions

15
src/App.tsx Normal file
View File

@@ -0,0 +1,15 @@
import { BrowserRouter, Routes, Route } from 'react-router-dom';
import VehicleManage from '@/pages/VehicleManage';
function App() {
return (
<BrowserRouter>
<Routes>
<Route path="/" element={<VehicleManage />} />
<Route path="/vehicle/:id" element={<VehicleManage />} />
</Routes>
</BrowserRouter>
);
}
export default App;