| 8 | import { PageContext } from "../context/page-context"; |
| 9 | |
| 10 | export interface RecordPathInfoSegment { |
| 11 | id: string; |
| 12 | path: RecordPath; |
| 13 | label: string; |
| 14 | label_i18n?: Record<string, string>; |
| 15 | exists: boolean; |
| 16 | can_have_children: boolean; |
| 17 | } |
| 18 | |
| 19 | function Crumb({ |
| 20 | alt, |
nothing calls this directly
no outgoing calls
no test coverage detected