import { FC, PropsWithChildren } from 'react'; import BaseLink from '@/components/ui/Link'; type WrapperProps = PropsWithChildren & { href: string; isExternalLink: boolean; }; export const Wrapper: FC = ({ href, isExternalLink, children }) => { if (!href) { return
{children}
; } return ( {children} ); };