| 6 | import { Link } from '@/components/ui/link' |
| 7 | |
| 8 | interface PageProps { |
| 9 | tree: PageTreeRoot |
| 10 | url: string |
| 11 | className?: string |
| 12 | } |
| 13 | |
| 14 | export const Pager = ({ tree, url, className }: PageProps) => { |
| 15 | const neighbours = findNeighbour(tree, url) |
nothing calls this directly
no outgoing calls
no test coverage detected