rsnext/examples/cms-prepr/components/post-body.js
Tim 1f5c2c8513
Add example prepr cms (#22776)
Added preview example with Prepr CMS.

Working demo at https://next-blog-prepr.vercel.app/
2021-03-04 19:12:42 +00:00

10 lines
246 B
JavaScript

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 }}
/>
)
}