import { FormSchema } from "@/types/schema"; import { FormProvider, UseFormReturn } from "react-hook-form"; import { useTranslation } from "react-i18next"; import { Card, CardContent } from "../ui/card"; import { FormField, FormItem, FormLabel } from "../ui/form"; import { Input } from "../ui/input"; import { TabsContent } from "../ui/tabs"; import { OptionalClassFormField } from "./classname-field"; import { ShellTypeFormField } from "./shelltype-field"; import { UrlPatternFormField } from "./urlpattern-field"; export function AntSwordTabContent({ form, shellTypes, }: Readonly<{ form: UseFormReturn; shellTypes: Array }>) { const { t } = useTranslation(); return (
( {t("shellToolConfig.antSwordPass")} {t("optional")} )} />
( {t("shellToolConfig.headerName")} )} /> ( {t("shellToolConfig.headerValue")} {t("optional")} )} />
); }