'use client' import type { FC } from 'react' import { removeLeadingSlash } from '@baseapp-frontend/utils' import NextLink from 'next/link' import { StyledMentionLink } from './styled' import type { MentionChipProps } from './types' const MentionChip: FC = ({ urlPath, children }) => { if (!urlPath) { return {children} } return ( {children} ) } export default MentionChip