diff options
| author | physcik <mynameisgennadiy@vk.com> | 2026-04-11 21:31:05 +0500 |
|---|---|---|
| committer | physcik <mynameisgennadiy@vk.com> | 2026-04-11 21:31:05 +0500 |
| commit | abf7e6ffd80ac6958d136d1be348afee8b094da6 (patch) | |
| tree | 4f33be81092169bae795c08b7e7a87e5f16dc51e /front/src/Pages | |
| parent | 49b5a4e03d0056e9df54d36891af7cc2ff7a8caa (diff) | |
more elements
Diffstat (limited to 'front/src/Pages')
| -rw-r--r-- | front/src/Pages/Weapons.tsx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/front/src/Pages/Weapons.tsx b/front/src/Pages/Weapons.tsx new file mode 100644 index 0000000..8c0160c --- /dev/null +++ b/front/src/Pages/Weapons.tsx @@ -0,0 +1,13 @@ +import { useContext } from "react"; +import { LanguageContext } from "../Locales/Context"; +import { GetLocalizedString } from "../Locales/Locales"; + +function WeaponsIndex() { + var lang = useContext(LanguageContext); + + return ( + <h1> {GetLocalizedString("Weapons index", lang)} </h1> + ); +} + +export default WeaponsIndex; |
