({ tag, value, mentions }: Props)
| 9 | } |
| 10 | |
| 11 | export default function Mention({ tag, value, mentions }: Props) { |
| 12 | return ( |
| 13 | <strong> |
| 14 | {tag} |
| 15 | {getDisplayName(value, mentions)} |
| 16 | </strong> |
| 17 | ); |
| 18 | } |
nothing calls this directly
no test coverage detected