--- import ArticlePreview, { type Props as ArticlePreviewProps, } from "./ArticlePreview.astro"; type Props = { articles: ArticlePreviewProps["article"][]; } & Omit; export type { Props }; const { articles, ...otherProps } = Astro.props; --- { articles.length > 0 && ( ) } { articles.slice(1).map((a) => ( <>
)) }