next.js/examples/cms-graphcms/components/post-body.js
post-body.js11 lines254 B
import postStyles from "./post-styles.module.css";

export default function PostBody({ content }) {
  return (
    <div
      className={`max-w-2xl mx-auto post ${postStyles.post}`}
      dangerouslySetInnerHTML={{ __html: content?.html }}
    />
  );
}
Quest for Codev2.0.0
/
SIGN IN