import React from "react"; import { useTranslation } from "next-i18next"; import WeaponUnit from "~components/WeaponUnit"; import type { SearchableObject } from "~types"; import "./index.scss"; // Props interface Props { grid: GridArray; editable: boolean; found?: boolean; offset: number; updateObject: (object: SearchableObject, position: number) => void; updateUncap: (id: string, position: number, uncap: number) => void; } const ExtraWeapons = (props: Props) => { const numWeapons: number = 3; const { t } = useTranslation("common"); return (
{t("extra_weapons")}
); }; export default ExtraWeapons;