/** * Confirmation node config */ import React from 'react'; import type { NodeConfigRendererProps } from './types'; export const ConfirmationNodeConfig: React.FC = ({ params, updateParam }) => ( <>
updateParam('question', e.target.value)} placeholder="Möchten Sie bestätigen?" />
updateParam('confirmLabel', e.target.value)} />
updateParam('rejectLabel', e.target.value)} />
);