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

Function TestTablesView

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

Source from the content-addressed store, hash-verified

280);
281
282const TestTablesView = (
283 props: TablesProps & {readonly cellPrefix?: string},
284) => (
285 <TablesView
286 {...props}
287 tableComponent={TestTableView}
288 getTableComponentProps={useCallback(
289 () => ({cellPrefix: props.cellPrefix}),
290 [props.cellPrefix],
291 )}
292 />
293);
294
295const TestTableView = (props: TableProps & {readonly cellPrefix?: string}) => (
296 <>

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…