RefInternalLink() — supabase Function Reference
Architecture documentation for the RefInternalLink() function in Reference.navigation.client.tsx from the supabase codebase.
Entity Profile
Dependency Diagram
graph TD 85cb5602_786c_2bd2_daf5_6d48e3a2b65a["RefInternalLink()"] ad13a905_2281_561d_52cd_61e34d97c40b["createReferenceSubsectionNavigator()"] 85cb5602_786c_2bd2_daf5_6d48e3a2b65a -->|calls| ad13a905_2281_561d_52cd_61e34d97c40b style 85cb5602_786c_2bd2_daf5_6d48e3a2b65a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/docs/features/docs/Reference.navigation.client.tsx lines 219–238
export function RefInternalLink({
href,
sectionSlug,
children,
}: {
href: string
sectionSlug?: string
children: React.ReactNode
}) {
const onClick = useCallback(
(evt: MouseEvent) => createReferenceSubsectionNavigator(href, sectionSlug)(evt),
[href, sectionSlug]
)
return (
<Link href={href} onClick={onClick}>
{children}
</Link>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does RefInternalLink() do?
RefInternalLink() is a function in the supabase codebase.
What does RefInternalLink() call?
RefInternalLink() calls 1 function(s): createReferenceSubsectionNavigator.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free