import React, { ElementType, FC } from 'react'; import { Nav, NavLinkProps } from 'react-bootstrap'; export interface TabNavLinkProps extends NavLinkProps { /** Utilizzarlo in caso di utilizzo di componenti personalizzati */ tag?: ElementType; testId?: string; } export const TabNavLink: FC = ({ tag, testId, ...attributes }) => { const Tag = tag; return ; };