import React from 'react' import { renderMarkdown } from '@/lib/markdownRenderer' interface DocsContentProps { content: string loading: boolean } export function DocsContent({ content, loading }: DocsContentProps) { if (loading) { return (

Chargement de la documentation...

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