import { useTranslation } from 'react-i18next'; interface HelpDialogProps { open: boolean; onClose: () => void; } export function HelpDialog({ open, onClose }: HelpDialogProps) { const { t } = useTranslation(); if (!open) return null; return (
e.stopPropagation()} >

{t('dialog.helpTitle')}

          {t('help.content')}
        
); }