import React from 'react' import RichText, { ComponentsContext } from '../../RichText' import type { BodyProps } from '../../Body' const ArticleBody: React.FC = ({ content, richTextComponents }) => { if (!content?.body?.structured) { return null } return (
) } export default ArticleBody