(props: { type?: "text" | "number"; children: unknown })
| 1253 | } |
| 1254 | |
| 1255 | function SortableTh(props: { type?: "text" | "number"; children: unknown }) { |
| 1256 | return ( |
| 1257 | <th class="sortable" data-type={props.type ?? "text"} scope="col"> |
| 1258 | {props.children} <span class="sort-indicator"></span> |
| 1259 | </th> |
| 1260 | ); |
| 1261 | } |
| 1262 | |
| 1263 | function EmptyRow(props: { columns: number }) { |
| 1264 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected