yufan.me/src/components/page/post/PostCards.astro

13 lines
264 B
Plaintext
Raw Normal View History

2024-06-14 02:11:26 +08:00
---
import PostCard from '@/components/page/post/PostCard.astro';
import type { Post } from '@/helpers/schema';
interface Props {
posts: Post[];
}
const { posts } = Astro.props;
---
<div class="list-grid">{posts.map((post) => <PostCard post={post} />)}</div>