({ href, className, children }: PlainLinkProps)
| 7 | } |
| 8 | |
| 9 | export function PlainLink({ href, className, children }: PlainLinkProps) { |
| 10 | return ( |
| 11 | <a href={href} className={className}> |
| 12 | {children} |
| 13 | </a> |
| 14 | ) |
| 15 | } |
nothing calls this directly
no outgoing calls
no test coverage detected