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 (
{t('help.content')}