import classNames from "classnames"; import classes from "./classes.module.scss"; import Link from "next/link"; import Typography, { ITypo } from "@Front/Components/DesignSystem/Typography"; import { useRouter } from "next/router"; type ITabItem = { label: string; path: string; activePaths?: string[]; }; type IProps = { items: ITabItem[]; }; export default function NavTab(props: IProps) { const router = useRouter(); return (
); }