import React from "react"; import { Streamdown } from "streamdown"; import Link from "next/link"; import { PostProps } from "../pages/blog/[id]"; const Post: React.FC<{ post: PostProps }> = ({ post }) => { return (

{post.title}

By {post.authorName}

{post.content || ""}
); }; export default Post;