diff --git a/frontend/components/PostBody.tsx b/frontend/components/PostBody.tsx index 163ebce..0af0797 100644 --- a/frontend/components/PostBody.tsx +++ b/frontend/components/PostBody.tsx @@ -2,7 +2,10 @@ import { Post } from "../types/index.ts"; export const PostBody = function PostBody({ post }: PostBodyOpts) { return ( -
{post.body}
+
); };