--- import Item from '~/components/blog/ListItem.astro'; import type { Post } from '~/types'; export interface Props { posts: Array; } const { posts } = Astro.props; ---