import { useTranslation } from 'react-i18next'; import { SwitchFormField } from './switch-fom-field'; type Props = { name: string }; export function TOCEnhanceFormField({ name }: Props) { const { t } = useTranslation(); return ( ); }