| 9 | import { Link, useMatches } from "react-router"; |
| 10 | |
| 11 | interface BreadCrumbProps { |
| 12 | maxItems?: number; |
| 13 | } |
| 14 | |
| 15 | type NavItem = Pick<NavItemDataProps, "path" | "title"> & { |
| 16 | children?: NavItem[]; |
nothing calls this directly
no outgoing calls
no test coverage detected