diff options
| author | physcik <mynameisgennadiy@vk.com> | 2026-04-23 19:51:43 +0500 |
|---|---|---|
| committer | physcik <mynameisgennadiy@vk.com> | 2026-04-23 19:51:43 +0500 |
| commit | b044c0354c46eadb9f4c66565779e9cb5ce92699 (patch) | |
| tree | 13a293410d0f39362a03458a2e52247f536f5039 /front/src/App.tsx | |
| parent | c99fc297e8b66273d6210bed0812efab399ba13b (diff) | |
Weapons page
Diffstat (limited to 'front/src/App.tsx')
| -rw-r--r-- | front/src/App.tsx | 5 |
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() { |
