Tasks MR #2

Merged
wymiller merged 6 commits from import into master 2025-06-29 22:29:20 -05:00
9 changed files with 372 additions and 92 deletions
Showing only changes of commit 3600166dc5 - Show all commits

View File

@ -2,7 +2,10 @@ import { Post } from "../types/index.ts";
export const PostBody = function PostBody({ post }: PostBodyOpts) {
return (
<div class="p-6 bg-[#313244] shadow-md text-[#f5e0dc]">{post.body}</div>
<div
class="p-6 bg-[#313244] shadow-md text-[#f5e0dc]"
dangerouslySetInnerHTML={{ __html: post.body }}
></div>
);
};