blob: d16762cc574f050dd69c1ffed1869a9207eaadee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import { useContext } from "react";
import { LanguageContext } from "../Locales/Context";
import { GetLocalizedString } from "../Locales/Locales";
function WeaponsIndex() {
var lang = useContext(LanguageContext);
return (
<div>
<h1> {GetLocalizedString("Weapons index", lang)} </h1>
</div>
);
}
function WeaponsType() {
}
export default WeaponsIndex;
|