import { useTranslation } from 'react-i18next'; import { Modal } from '@/components/ui/Modal'; interface HelpDialogProps { open: boolean; onClose: () => void; } export function HelpDialog({ open, onClose }: HelpDialogProps) { const { t } = useTranslation(); return (

{t('dialog.helpTitle')}

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