import React from 'react'; import { Text } from 'folds'; import * as theme from './forumTheme.css'; type ForumMessageBodyProps = { body: string; bodyHtml?: string; }; export function ForumMessageBody({ body, bodyHtml }: ForumMessageBodyProps) { const plain = body.trim(); if (bodyHtml) { return (
); } if (!plain) return null; return ( {body} ); }