({
isSubDomainRouting,
path,
communityName,
communityType,
...props
}: any)
| 2 | import { CustomLinkHelper } from '@linen/utilities/custom-link'; |
| 3 | |
| 4 | export default function CustomTableRowLink({ |
| 5 | isSubDomainRouting, |
| 6 | path, |
| 7 | communityName, |
| 8 | communityType, |
| 9 | ...props |
| 10 | }: any) { |
| 11 | const href = CustomLinkHelper({ |
| 12 | communityType, |
| 13 | communityName, |
| 14 | isSubDomainRouting, |
| 15 | path, |
| 16 | }); |
| 17 | return <Link href={href} {...props} prefetch={false}></Link>; |
| 18 | } |
nothing calls this directly
no test coverage detected