| 10 | import { Menu, MenuContent, MenuItem, MenuLabel } from '@/components/ui/menu' |
| 11 | |
| 12 | interface MobilePagerProps { |
| 13 | tree: PageTreeRoot |
| 14 | url: string |
| 15 | toc?: TableOfContents |
| 16 | className?: string |
| 17 | } |
| 18 | |
| 19 | function getTocTextValue(item: TOCItemType) { |
| 20 | return typeof item.title === 'string' ? item.title : (item.url.split('#').pop() ?? item.url) |
nothing calls this directly
no outgoing calls
no test coverage detected