import React from "react"; import { NavLink } from "react-router-dom"; type TabProps = { href: string; }; const Tab: React.FC = ({ href, children }) => ( {children} ); export default Tab;