import { ReactNode } from 'react' import { cn } from 'ui' interface DocSectionProps { title: ReactNode id?: string content: ReactNode snippets?: ReactNode className?: string } export const DocSection = ({ title, id, content, snippets, className }: DocSectionProps) => { return (