import React from 'react'; import { Select } from 'antd'; import { useTranslation } from 'react-i18next'; interface Props { payload: any; } function NodeDropdown(props: Props) { const { t } = useTranslation(); return ( ); } export default NodeDropdown;