import { Card } from './ui' import { renderMarkdown } from '@/lib/markdownRenderer' import { t } from '@/lib/i18n' interface DocsContentProps { content: string loading: boolean } export function DocsContent({ content, loading }: DocsContentProps): React.ReactElement { if (loading) { return (

{t('docs.loading')}

) } return (
{renderMarkdown(content)}
) }