MCPcopy Create free account
hub / github.com/anomalyco/models.dev / SortableTh

Function SortableTh

packages/web/src/render.tsx:1255–1261  ·  view source on GitHub ↗
(props: { type?: "text" | "number"; children: unknown })

Source from the content-addressed store, hash-verified

1253}
1254
1255function 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
1263function EmptyRow(props: { columns: number }) {
1264 return (

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected