import React, { useState } from "react"; import classnames from "classnames"; import { Link } from "gatsby"; import { Popover } from "react-tiny-popover"; const navClasses = "hover:underline hover:bg-black/10 block p-3 text-black"; const ExternalLinks = () => ( ); interface NavProps { className?: string; internalLinks: { href: string; label: string; }[]; } const Nav = ({ internalLinks, className }: NavProps) => { const [linksMenu, setLinksMenu] = useState(false); return ( ); }; export default Nav;