'use client';
import ReactMarkdown from 'react-markdown';
import remarkGfm from 'remark-gfm';
export function MarkdownContent({ content }: { content: string }) {
return (
(
),
thead: ({ children, ...props }) => (
{children}
),
th: ({ children, ...props }) => (
|
{children}
|
),
td: ({ children, ...props }) => (
{children}
|
),
tr: ({ children, ...props }) => (
{children}
),
}}
>
{content}
);
}