import { cn } from '@/lib/utils' import { Event } from 'nostr-tools' import { useTranslation } from 'react-i18next' import UserAvatar from '../UserAvatar' export default function ParentNotePreview({ event, className, onClick }: { event: Event className?: string onClick?: React.MouseEventHandler | undefined }) { const { t } = useTranslation() return (
{t('reply to')}
{event.content}
) }