import { PostCard } from "./PostCard.tsx"; import { Post } from "../types/index.ts"; interface PostOpts { posts: Post[]; } export const PostCarousel = function PostCarousel({ posts }: PostOpts) { return (