SmartRegionsList() — supabase Function Reference
Architecture documentation for the SmartRegionsList() function in RegionsList.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/docs/components/RegionsList.tsx lines 16–27
export function SmartRegionsList() {
return (
<ul>
{[...SMART_REGION_TO_EXACT_REGION_MAP.entries()].map(([smartRegion, exactRegion]) => (
<li key={smartRegion} className="flex flex-col gap-2">
<span className="w-fit !mt-0">{smartRegion}</span>
<code className="w-fit">{exactRegion}</code>
</li>
))}
</ul>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free