import { cn } from '@/lib/utils' import { Event } from 'nostr-tools' import { useTranslation } from 'react-i18next' export default function VideoNotePreview({ event, className }: { event: Event className?: string }) { const { t } = useTranslation() return (
[{t('Media')}] {event.content}
) }