mirror of
https://github.com/h3poteto/whalebird-desktop
synced 2025-01-12 00:46:29 +01:00
20 lines
456 B
TypeScript
20 lines
456 B
TypeScript
import { Entity } from 'megalodon'
|
|
|
|
type Props = {
|
|
media: Array<Entity.Attachment>
|
|
}
|
|
export default function Media(props: Props) {
|
|
return (
|
|
<div className="mt-2 flex flex-wrap">
|
|
{props.media.map((media, key) => (
|
|
<img
|
|
src={media.preview_url}
|
|
className="h-36 mr-2 mb-2 rounded-md max-w-full cursor-pointer"
|
|
alt={media.description}
|
|
title={media.description}
|
|
/>
|
|
))}
|
|
</div>
|
|
)
|
|
}
|