import React, { AnchorHTMLAttributes } from "react";
import { NavLink } from "react-router-dom";
const MenuLink: React.FC> = ({ href, ...otherProps }) => {
const isHttpLink = href?.startsWith("http");
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const Tag: any = isHttpLink ? "a" : NavLink;
const props = isHttpLink ? { href } : { to: href };
return ;
};
export default MenuLink;