(
props: TablesProps & {readonly cellPrefix?: string},
)
| 280 | ); |
| 281 | |
| 282 | const TestTablesView = ( |
| 283 | props: TablesProps & {readonly cellPrefix?: string}, |
| 284 | ) => ( |
| 285 | <TablesView |
| 286 | {...props} |
| 287 | tableComponent={TestTableView} |
| 288 | getTableComponentProps={useCallback( |
| 289 | () => ({cellPrefix: props.cellPrefix}), |
| 290 | [props.cellPrefix], |
| 291 | )} |
| 292 | /> |
| 293 | ); |
| 294 | |
| 295 | const TestTableView = (props: TableProps & {readonly cellPrefix?: string}) => ( |
| 296 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…