({tableId, rowId, store}: RowProps)
| 221 | ); |
| 222 | |
| 223 | export const RowActions = ({tableId, rowId, store}: RowProps) => ( |
| 224 | <ConfirmableActions |
| 225 | actions={[ |
| 226 | ['add', 'Add cell', AddCell], |
| 227 | ['clone', 'Clone row', CloneRow], |
| 228 | ['delete', 'Delete row', DeleteRow], |
| 229 | ]} |
| 230 | store={store} |
| 231 | tableId={tableId} |
| 232 | rowId={rowId} |
| 233 | /> |
| 234 | ); |
| 235 | |
| 236 | // -- |
| 237 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…