| 137 | }; |
| 138 | |
| 139 | export interface TableColumnHeaderProps<TData, TValue> |
| 140 | extends HTMLAttributes<HTMLDivElement> { |
| 141 | column: Column<TData, TValue>; |
| 142 | title: string; |
| 143 | } |
| 144 | |
| 145 | export function TableColumnHeader<TData, TValue>({ |
| 146 | column, |
nothing calls this directly
no outgoing calls
no test coverage detected