import type { FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import type { WebhookTriggerNodeType } from './types' import type { NodeProps } from '@/app/components/workflow/types' const i18nPrefix = 'workflow.nodes.triggerWebhook' const Node: FC> = ({ data, }) => { const { t } = useTranslation() return (
{t(`${i18nPrefix}.nodeTitle`)}
{data.http_methods && data.http_methods.length > 0 && (
{data.http_methods.join(', ')}
)}
) } export default React.memo(Node)