Function
TableBody
({ className, ...props }: React.ComponentProps<"tbody">)
Source from the content-addressed store, hash-verified
| 28 | } |
| 29 | |
| 30 | function TableBody({ className, ...props }: React.ComponentProps<"tbody">) { |
| 31 | return ( |
| 32 | <tbody |
| 33 | data-slot="table-body" |
| 34 | className={cn("[&_tr:last-child]:border-0", className)} |
| 35 | {...props} |
| 36 | /> |
| 37 | ) |
| 38 | } |
| 39 | |
| 40 | function TableFooter({ className, ...props }: React.ComponentProps<"tfoot">) { |
| 41 | return ( |
Callers
nothing calls this directly
Tested by
no test coverage detected