import { Card } from './ui/card'; import { cn } from '@/lib/utils'; interface ConfigViewerProps { content: string; className?: string; } export function ConfigViewer({ content, className }: ConfigViewerProps) { return (
        {content}
      
); }