CopyEmptyStates() — supabase Function Reference
Architecture documentation for the CopyEmptyStates() function in copy-empty-states.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/design-system/registry/default/example/copy-empty-states.tsx lines 7–34
export default function CopyEmptyStates() {
return (
<div className="flex flex-col gap-8">
<div className="flex flex-col gap-4">
<span className="text-xs text-foreground-muted">Bad Example</span>
<div className="flex flex-col gap-4">
<EmptyStatePresentational
icon={Key}
title="There are no API keys available"
description=""
/>
</div>
</div>
<div className="flex flex-col gap-4">
<span className="text-xs text-foreground-muted">Good Example</span>
<div className="flex flex-col gap-4">
<EmptyStatePresentational
icon={Key}
title="No API keys"
description="Generate a key to connect your application."
>
<Button type="primary">Generate key</Button>
</EmptyStatePresentational>
</div>
</div>
</div>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free