Posts

This commit is contained in:
2024-02-24 17:33:35 +08:00
parent 05ae2783cf
commit bd6f24c286
13 changed files with 195 additions and 22 deletions

View File

@ -0,0 +1,7 @@
"use client";
import MuiMarkdown from "mui-markdown";
export default function PostContent({ content }: { content: string }) {
return <MuiMarkdown>{content}</MuiMarkdown>;
}