import { Post } from "../types/index.ts"; export const PostBody = function PostBody({ post }: PostBodyOpts) { return (
{post.body}
); }; export type PostBodyOpts = { post: Post; };