({tableId, rowId, cellId, store}: CellProps)
| 249 | ); |
| 250 | |
| 251 | export const CellActions = ({tableId, rowId, cellId, store}: CellProps) => ( |
| 252 | <ConfirmableActions |
| 253 | actions={[['delete', 'Delete cell', CellDelete]]} |
| 254 | store={store} |
| 255 | tableId={tableId} |
| 256 | rowId={rowId} |
| 257 | cellId={cellId} |
| 258 | /> |
| 259 | ); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…