You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
412 B
12 lines
412 B
import { Event } from 'nostr-tools' |
|
import Content from '../Content' |
|
|
|
export default function VideoNote({ event, className }: { event: Event; className?: string }) { |
|
// Content component already handles all media rendering (from content and tags) |
|
// with proper deduplication, so we don't need to add anything extra |
|
return ( |
|
<div className={className}> |
|
<Content event={event} /> |
|
</div> |
|
) |
|
}
|
|
|