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