import { FC, Children, isValidElement, PropsWithChildren } from 'react'; import { Card, Nav, NavLink } from 'reactstrap'; import { NavLink as RouterNavLink } from 'react-router-dom'; import './NavPills.scss'; type NavPillsProps = PropsWithChildren<{ fill?: boolean; className?: string; }>; type NavPillProps = PropsWithChildren<{ to: string; replace?: boolean; }>; export const NavPillItem: FC = ({ children, ...rest }) => ( {children} ); export const NavPills: FC = ({ children, fill = false, className = '' }) => ( );