import type { MemShellFormSchema } from "@/types/schema"; import { Controller, type UseFormReturn, useWatch } from "react-hook-form"; import { useTranslation } from "react-i18next"; import { Card, CardContent } from "@/components/ui/card"; import { Field, FieldLabel } from "@/components/ui/field"; import { Input } from "@/components/ui/input"; import { TabsContent } from "@/components/ui/tabs"; import { OptionalClassFormField } from "./classname-field"; import { ShellTypeFormField } from "./shelltype-field"; export function ProxyTabContent({ form, shellTypes, }: Readonly<{ form: UseFormReturn; shellTypes: Array; }>) { const shellType = useWatch({ name: "shellType", control: form.control, }); const { t } = useTranslation(["memshell", "common"]); return ( ); }