import ReactMarkdown from 'react-markdown' import remarkBreaks from 'remark-breaks' /** * Rechtstext-Absatz aus Markdown (ohne Roht-HTML; Links mit target=_blank). */ export default function LegalDocumentBody({ content, muted }) { if (content == null || content === '') return null return (
( {children} ), }} > {content}
) }