import type { FC } from 'react' import React from 'react' import { useTranslation } from 'react-i18next' import type { HumanInputNodeType } from './types' import type { NodePanelProps } from '@/app/components/workflow/types' const i18nPrefix = 'workflow.nodes.humanInput' const Panel: FC> = ({ id, data, }) => { const { t } = useTranslation() return (
TODO
) } export default React.memo(Panel)