MCPcopy Create free account
hub / github.com/evolify/dumpfun / TableRow

Function TableRow

common/components/ui/table.tsx:53–64  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<"tr">)

Source from the content-addressed store, hash-verified

51}
52
53function TableRow({ className, ...props }: React.ComponentProps<"tr">) {
54 return (
55 <tr
56 data-slot="table-row"
57 className={cn(
58 "hover:bg-muted/50 data-[state=selected]:bg-muted border-b transition-colors",
59 className
60 )}
61 {...props}
62 />
63 )
64}
65
66function TableHead({ className, ...props }: React.ComponentProps<"th">) {
67 return (

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected