Section() — supabase Function Reference
Architecture documentation for the Section() function in Reference.ui.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/docs/features/docs/Reference.ui.tsx lines 35–50
function Section({ slug, link, columns = 'single', children }: SectionProps) {
const singleColumn = columns === 'single'
return (
<ReferenceSectionWrapper
id={slug || ''}
link={link}
className={cn(
'grid grid-cols-[1fr] gap-x-16 gap-y-8',
singleColumn ? 'max-w-3xl' : '@4xl/article:grid-cols-[1fr,1fr]'
)}
>
{children}
</ReferenceSectionWrapper>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free