import React from "react"; import Link from "next/link"; import { useRouter } from "next/router"; import SearchInput from "components/SearchInput"; const mockedAccounts = [ { label: "Subaccount 1", }, { label: "Subaccount 2", }, { label: "Subaccount 3", }, { label: "Subaccount 4", }, ]; const NavLink = ({ href, children }: { href: string; children: string }) => { const router = useRouter(); return ( {children} ); }; const Navigation = () => (
); export default Navigation;