MCPcopy Create free account
hub / github.com/TanStack/ai / TableRow

Function TableRow

examples/ts-react-search/src/components/ui/table.tsx:55–66  ·  view source on GitHub ↗
({ className, ...props }: React.ComponentProps<'tr'>)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 1

cnFunction · 0.85

Tested by

no test coverage detected