import { Link, LinkProps } from "react-router-dom"; type Props = LinkProps & JSX.HTMLAttributes & { active: boolean; }; export default function ConditionalLink(props: Props) { const { active, ...linkProps } = props; if (active) { return {props.children}; } else { return ; } }