MCPcopy Create free account
hub / github.com/bytebase/dbhub / TableHeader

Function TableHeader

frontend/src/components/ui/table.tsx:23–34  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<"thead">)

Source from the content-addressed store, hash-verified

21}
22
23function TableHeader({ className, ...props }: React.ComponentProps<"thead">) {
24 return (
25 <thead
26 className={cn(
27 "[&_tr]:border-b in-data-[slot=frame]:**:[th]:h-9 in-data-[slot=frame]:*:[tr]:border-none in-data-[slot=frame]:*:[tr]:hover:bg-transparent",
28 className,
29 )}
30 data-slot="table-header"
31 {...props}
32 />
33 );
34}
35
36function TableBody({ className, ...props }: React.ComponentProps<"tbody">) {
37 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected