13 lines
264 B
Plaintext
13 lines
264 B
Plaintext
|
---
|
||
|
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>
|