import { FormControl, FormDescription, FormField, FormItem, FormLabel, } from "@/components/ui/form.tsx"; import { Switch } from "@/components/ui/switch.tsx"; import type { HostDockerTabProps } from "./shared/tab-types"; import { Button } from "@/components/ui/button.tsx"; export function HostDockerTab({ form, t }: HostDockerTabProps) { return (
( {t("hosts.enableDocker")} {t("hosts.enableDockerDesc")} )} />
); }