Files
sukr/src/components/MediaPreviewList.astro
Timothy DeHerrera 14079f0511 Initial commit
2022-11-01 15:18:00 -06:00

15 lines
292 B
Plaintext

---
import MediaPreview from './MediaPreview.astro'
const { posts } = Astro.props
---
<section class="media-preview__list">
{posts.map((post) => (
<MediaPreview post={post}/>
))}
</section>
<style>
.media-preview__list {
@apply flex flex-col gap-12
}
</style>