mirror of
https://github.com/csehviktor/status-monitor.git
synced 2026-04-28 08:17:35 +02:00
13 lines
311 B
TypeScript
13 lines
311 B
TypeScript
import { BrowserRouter, Route, Routes } from "react-router-dom";
|
|
import { HomePage } from "@/pages/home";
|
|
|
|
export default function App() {
|
|
return (
|
|
<BrowserRouter>
|
|
<Routes>
|
|
<Route path="/" element={<HomePage />} />
|
|
</Routes>
|
|
</BrowserRouter>
|
|
);
|
|
}
|