RegionsList() — supabase Function Reference
Architecture documentation for the RegionsList() function in RegionsList.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/docs/components/RegionsList.tsx lines 4–15
export function RegionsList() {
return (
<ul>
{Object.keys(AWS_REGIONS).map((region) => (
<li key={region} className="flex flex-col gap-2">
<span className="w-fit !mt-0">{AWS_REGIONS[region].displayName}</span>
<code className="w-fit">{AWS_REGIONS[region].code}</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