CronJobsEmptyState() — supabase Function Reference
Architecture documentation for the CronJobsEmptyState() function in CronJobsEmptyState.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Integrations/CronJobs/CronJobsEmptyState.tsx lines 1–14
export default function CronJobsEmptyState({ page }: { page: string }) {
return (
<div className=" text-center h-full w-full items-center justify-center rounded-md px-4 py-12 ">
<p className="text-sm text-foreground">
{page === 'jobs' ? 'No cron jobs created yet' : 'No runs for this cron job yet'}
</p>
<p className="text-sm text-foreground-lighter">
{page === 'jobs'
? 'Create one by clicking "Create a new cron job"'
: 'Check the schedule of your cron jobs to see when they run'}
</p>
</div>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free