import classnames from 'classnames'; import { DefaultLink, LinkIdentifier } from './defaultMenuLinks'; import { Link } from './Header'; import { sendHeaderEvent } from './analytics'; interface MenuLinksProps { links: Array; } /** * The primary list of menu links. This ensures a consistent styling * across header variations. On the homepage, this list is displayed * horizontally on desktop. In other versions, this list is visible * when the "Menu" button is toggled and displayed as a stacked list. */ const MenuLinks = (props: MenuLinksProps) => ( ); export default MenuLinks;