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

Function EditableCellViewWithActions

src/ui-solid-inspector/index.tsx:582–591  ·  view source on GitHub ↗
(props: CellProps)

Source from the content-addressed store, hash-verified

580const rowActions = [{label: '', component: RowActions}];
581
582const EditableCellViewWithActions = (props: CellProps) => (
583 <>
584 <EditableCellView {...props} />
585 {useHasCell(props.tableId, props.rowId, props.cellId, props.store)() ? (
586 <CellActions {...props} />
587 ) : (
588 EMPTY_STRING
589 )}
590 </>
591);
592
593const ValuesView = (
594 props: ValuesProps & {readonly storeId?: Id} & StoreProp,

Callers

nothing calls this directly

Calls 1

useHasCellFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…