import { Link } from 'react-router-dom' export interface BreadcrumbItem { label: string href?: string } export function Breadcrumbs({ items }: { items: BreadcrumbItem[] }) { if (items.length === 0) return null return ( ) }