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