(props: CellProps)
| 40 | const rowActions = [{label: '', component: RowActions}]; |
| 41 | |
| 42 | const EditableCellViewWithActions = (props: CellProps) => ( |
| 43 | <> |
| 44 | <EditableCellView {...props} /> |
| 45 | {useHasCell(props.tableId, props.rowId, props.cellId, props.store) && ( |
| 46 | <CellActions {...props} /> |
| 47 | )} |
| 48 | </> |
| 49 | ); |
| 50 | |
| 51 | const TableView = ({ |
| 52 | tableId, |
nothing calls this directly
no test coverage detected
searching dependent graphs…