| 7 | import { ScrollArea } from '@/components/ui/scroll-area' |
| 8 | |
| 9 | interface Props { |
| 10 | className?: string |
| 11 | items: TableOfContents |
| 12 | } |
| 13 | |
| 14 | export function Toc({ className, items }: Props) { |
| 15 | const tocRef = useRef<HTMLDivElement>(null) |
nothing calls this directly
no outgoing calls
no test coverage detected