import styles from "../styles/post-body.module.css"; type Props = { content: string; }; export default function PostBody({ content }: Props) { return (
); }