File size: 362 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
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>
);
}
|