SqlSnippetSection() — supabase Function Reference
Architecture documentation for the SqlSnippetSection() function in SqlSnippetSection.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Integrations/CronJobs/SqlSnippetSection.tsx lines 12–33
export const SqlSnippetSection = ({ form }: SqlSnippetSectionProps) => {
return (
<SheetSection className="!px-0 !pb-0">
<FormField_Shadcn_
control={form.control}
name="values.snippet"
render={({ field }) => (
<FormItemLayout label="SQL Snippet" className="[&>div>label]:px-content">
<CodeEditor
id="create-cron-job-editor"
language="pgsql"
className="h-72"
autofocus={false}
value={field.value}
onInputChange={field.onChange}
/>
</FormItemLayout>
)}
/>
</SheetSection>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free