import React from 'react'; import { NavLink } from 'react-router-dom'; interface Link { label: string; href: string; } interface Props { links?: Link[]; } const Breadcrumb: React.FC = ({ links, children, }) => { return ( ); } export default Breadcrumb;