aboutsummaryrefslogtreecommitdiff
path: root/web/src/App.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/App.jsx')
-rw-r--r--web/src/App.jsx16
1 files changed, 16 insertions, 0 deletions
diff --git a/web/src/App.jsx b/web/src/App.jsx
new file mode 100644
index 0000000..e930779
--- /dev/null
+++ b/web/src/App.jsx
@@ -0,0 +1,16 @@
+import { BrowserRouter, Route, Routes } from 'react-router-dom'
+import Callsign from './pages/Callsign';
+import Search from './pages/Search';
+import './App.css'
+
+export default function App() {
+ return <>
+ <BrowserRouter>
+ <Routes>
+ <Route path="/search" element={<Search />} />
+ <Route path="/callsign" element={<Callsign />} />
+ <Route path="/" exact element={<Search />} />
+ </Routes>
+ </BrowserRouter>
+ </>
+}