import React from 'react' interface DropdownItem { label: string url: string trackable: string } interface SubNavDropdownProps { id: string items: DropdownItem[] ariaLabelledBy: string title?: string } const SubNavDropdown: React.FC = ({ id, items, ariaLabelledBy, title }) => { return ( ) } export default SubNavDropdown