| 7 | import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "@/components/ui/collapsible"; |
| 8 | |
| 9 | interface CodeBlockProps extends React.HTMLAttributes<HTMLDivElement> { |
| 10 | expandButtonTitle?: string; |
| 11 | } |
| 12 | |
| 13 | export function CodeBlockWrapper({ |
| 14 | expandButtonTitle = "View Code", |
nothing calls this directly
no outgoing calls
no test coverage detected