summaryrefslogtreecommitdiff
path: root/front/src/App.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'front/src/App.tsx')
-rw-r--r--front/src/App.tsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/front/src/App.tsx b/front/src/App.tsx
index 9bfb323..2f69086 100644
--- a/front/src/App.tsx
+++ b/front/src/App.tsx
@@ -10,6 +10,7 @@ import { useState } from 'react';
import { ReadCurrentLocale, SaveCurrentLocale } from './Locales/Locales';
import LegalNote from './Emelents/LegalNote';
import WeaponsIndex from './Pages/Weapons';
+import RangedWeaponPage from './Pages/RangedWeapon';
const router = createBrowserRouter([
{
@@ -24,6 +25,10 @@ const router = createBrowserRouter([
path: "/weapons",
element: (<WeaponsIndex />),
},
+ {
+ path: "/weapons/:id",
+ element: (<RangedWeaponPage />),
+ },
]);
function App() {