import StrongParagraph from './StrongParagraph'; export default function ParagraphWithHeader({ title, body, }: { title: string; body: string; }) { return (
{title}
{body}
); }