Home / Function/ DestinationNameInput() — supabase Function Reference

DestinationNameInput() — supabase Function Reference

Architecture documentation for the DestinationNameInput() function in DestinationNameInput.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/studio/components/interfaces/Database/Replication/DestinationPanel/DestinationForm/DestinationNameInput.tsx lines 11–25

export const DestinationNameInput = ({ form }: DestinationNameInputProps) => {
  return (
    <FormField_Shadcn_
      control={form.control}
      name="name"
      render={({ field }) => (
        <FormItemLayout label="Name" layout="horizontal">
          <FormControl_Shadcn_>
            <Input_Shadcn_ {...field} placeholder="My destination" />
          </FormControl_Shadcn_>
        </FormItemLayout>
      )}
    />
  )
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free