MCPcopy Index your code
hub / github.com/tinyplex/tinybase / CellDelete

Function CellDelete

src/ui-react-inspector/actions/tables.tsx:238–249  ·  view source on GitHub ↗
({
  onDone,
  tableId,
  rowId,
  cellId,
  store,
}: OnDoneProp & CellProps)

Source from the content-addressed store, hash-verified

236// --
237
238const CellDelete = ({
239 onDone,
240 tableId,
241 rowId,
242 cellId,
243 store,
244}: OnDoneProp & CellProps) => (
245 <Delete
246 onClick={useDelCellCallback(tableId, rowId, cellId, true, store, onDone)}
247 prompt="Delete cell"
248 />
249);
250
251export const CellActions = ({tableId, rowId, cellId, store}: CellProps) => (
252 <ConfirmableActions

Callers

nothing calls this directly

Calls 1

useDelCellCallbackFunction · 0.90

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…