import React, {FC} from "react"; import {Nav} from "react-bootstrap"; import {Link} from "react-router-dom"; const NavTab: FC = ({eventKey, label, icon, activeIcon, activeKey, onTabClick}) => { const isActive = () => activeKey === eventKey; return ( onTabClick(eventKey)}> {!isActive() || activeIcon == null ? : } {label} ); }; interface NavTabProps { eventKey: string, label: string, icon: string, activeIcon?: string, activeKey: string, onTabClick: (key: string) => void } export default NavTab;