next.js/examples/cms-ghost/components/post-body.js
post-body.js13 lines298 B
import markdownStyles from "./markdown-styles.module.css";

export default function PostBody({ content }) {
  return (
    <div className="max-w-2xl mx-auto">
      <div
        className={markdownStyles["markdown"]}
        dangerouslySetInnerHTML={{ __html: content }}
      />
    </div>
  );
}
Quest for Codev2.0.0
/
SIGN IN