Home / Function/ Row() — supabase Function Reference

Row() — supabase Function Reference

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

Entity Profile

Relationship Graph

Source Code

apps/studio/components/interfaces/Home/NewProjectPanel/GetStartedHero.tsx lines 9–32

const Row = ({
  className,
  col1,
  col2,
  col3,
}: {
  className?: string
  col1: string
  col2: string
  col3: string
}) => (
  <div className={cn('h-[30px] flex items-center bg-studio border-b border-default', className)}>
    <Checkbox />
    <div className="w-[15%] h-full flex items-center border-r border-default px-2">
      <p className="text-xs">{col1}</p>
    </div>
    <div className="w-[45%] h-full flex items-center border-r border-default px-2">
      <p className="text-xs">{col2}</p>
    </div>
    <div className="w-[30%] h-full flex items-center px-2">
      <p className="text-xs">{col3}</p>
    </div>
  </div>
)

Subdomains

Analyze Your Own Codebase

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

Try Supermodel Free