Files
my-website-v2/frontend/components/PostBody.tsx

15 lines
321 B
TypeScript
Raw Normal View History

import { Post } from "../types/index.ts";
export const PostBody = function PostBody({ post }: PostBodyOpts) {
return (
2025-05-17 21:07:56 -04:00
<div
2025-06-29 23:41:20 -04:00
class="p-6 bg-[#313244] shadow-md text-[#f5e0dc] post-content"
2025-05-17 21:07:56 -04:00
dangerouslySetInnerHTML={{ __html: post.body }}
></div>
);
};
export type PostBodyOpts = {
post: Post;
};