import { Form, Switch } from 'antd'; import { useTranslation } from 'react-i18next'; import { SwitchFormField } from './switch-fom-field'; type IProps = { filedName: string[] | string; }; export function UseKnowledgeGraphItem({ filedName }: IProps) { const { t } = useTranslation(); return (