MCPcopy Create free account
hub / github.com/Linen-dev/linen.dev / CustomTableRowLink

Function CustomTableRowLink

apps/web/components/Link/CustomTableRowLink.tsx:4–18  ·  view source on GitHub ↗
({
  isSubDomainRouting,
  path,
  communityName,
  communityType,
  ...props
}: any)

Source from the content-addressed store, hash-verified

2import { CustomLinkHelper } from '@linen/utilities/custom-link';
3
4export 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}

Callers

nothing calls this directly

Calls 1

CustomLinkHelperFunction · 0.90

Tested by

no test coverage detected