MCPcopy Create free account
hub / github.com/tinyplex/tinybase / TestResultTableView

Function TestResultTableView

test/unit/core/ui-react/components.test.tsx:209–223  ·  view source on GitHub ↗
(
  props: ResultTableProps & {readonly cellPrefix?: string},
)

Source from the content-addressed store, hash-verified

207);
208
209const TestResultTableView = (
210 props: ResultTableProps & {readonly cellPrefix?: string},
211) => (
212 <>
213 {props.queryId}:
214 <ResultTableView
215 {...props}
216 resultRowComponent={TestResultRowView}
217 getResultRowComponentProps={useCallback(
218 () => ({cellPrefix: props.cellPrefix}),
219 [props.cellPrefix],
220 )}
221 />
222 </>
223);
224
225const TestResultSortedTableView = (
226 props: ResultSortedTableProps & {readonly cellPrefix?: string},

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…