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

Function TestLocalRowsView

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

Source from the content-addressed store, hash-verified

175);
176
177const TestLocalRowsView = (
178 props: LocalRowsProps & {readonly cellPrefix?: string},
179) => (
180 <>
181 {props.remoteRowId}:
182 <LocalRowsView
183 {...props}
184 rowComponent={TestRowView}
185 getRowComponentProps={useCallback(
186 () => ({cellPrefix: props.cellPrefix}),
187 [props.cellPrefix],
188 )}
189 />
190 </>
191);
192
193const TestLinkedRowsView = (
194 props: LinkedRowsProps & {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…