import type { FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import type { PluginTriggerNodeType } from './types' import Field from '@/app/components/workflow/nodes/_base/components/field' import type { NodePanelProps } from '@/app/components/workflow/types' const i18nPrefix = 'workflow.nodes.triggerPlugin' const Panel: FC> = ({ id, data, }) => { const { t } = useTranslation() return (
{t(`${i18nPrefix}.configPlaceholder`)}
) } export default React.memo(Panel)