import PostPreview from "./post-preview"; import PostType from "../types/postType"; type Props = { posts: PostType[]; }; export default function MoreStories({ posts }: Props) { return (

More Stories

{posts.map((post) => ( ))}
); }