import Link, { LinkProps } from "next/link"; import { useRouter } from "next/router"; import React, { ElementType, FC } from "react"; import classNames from "@lib/classNames"; interface Props { tabs: { name: string; href: string; icon?: ElementType; }[]; linkProps?: Omit; } const NavTabs: FC = ({ tabs, linkProps }) => { const router = useRouter(); return ( <>
); }; export default NavTabs;