| 1 | import { Admin } from "@/pages/Admin"; |
| 2 | import { ServerDetail } from "@/pages/ServerDetail"; |
| 3 | import { ServerList } from "@/pages/ServerList"; |
| 4 | import { ROUTE_PATHS } from "@/lib/apiPaths"; |
| 5 | import { Route, Routes } from "react-router-dom"; |
| 6 | |
| 7 | function App() { |
| 8 | return ( |
| 9 | <Routes> |
| 10 | <Route path={ROUTE_PATHS.home} element={<ServerList />} /> |
| 11 | <Route path={ROUTE_PATHS.serverDetail} element={<ServerDetail />} /> |
| 12 | <Route path={ROUTE_PATHS.admin} element={<Admin />} /> |
| 13 | </Routes> |
| 14 | ); |
| 15 | } |
| 16 | |
| 17 | export default App; |