rsnext/examples/cms-builder-io/components/post-body.js
2022-01-12 21:58:43 +00:00

13 lines
359 B
JavaScript

import { BUILDER_CONFIG } from '@/lib/constants'
import { BuilderComponent } from '@builder.io/react'
export default function PostBody({ content }) {
return (
<div className="max-w-2xl mx-auto">
<BuilderComponent
options={{ includeRefs: true }}
model={BUILDER_CONFIG.postsModel}
content={content}
/>
</div>
)
}