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

Function TestRemoteRowView

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

Source from the content-addressed store, hash-verified

159);
160
161const TestRemoteRowView = (
162 props: RemoteRowProps & {readonly cellPrefix?: string},
163) => (
164 <>
165 {props.localRowId}:
166 <RemoteRowView
167 {...props}
168 rowComponent={TestRowView}
169 getRowComponentProps={useCallback(
170 () => ({cellPrefix: props.cellPrefix}),
171 [props.cellPrefix],
172 )}
173 />
174 </>
175);
176
177const TestLocalRowsView = (
178 props: LocalRowsProps & {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…