import { Post, PostCard } from "./PostCard.tsx"; interface PostOpts { posts: Post[]; } export const PostCarousel = function PostCarousel({ posts }: PostOpts) { return (
{posts.map((post: Post, idx: number) => { if (idx < 3) { return ; } })}
); };