(props: TableProps & {readonly cellPrefix?: string})
| 293 | ); |
| 294 | |
| 295 | const TestTableView = (props: TableProps & {readonly cellPrefix?: string}) => ( |
| 296 | <> |
| 297 | {props.tableId}: |
| 298 | <TableView |
| 299 | {...props} |
| 300 | rowComponent={TestRowView} |
| 301 | getRowComponentProps={useCallback( |
| 302 | () => ({cellPrefix: props.cellPrefix}), |
| 303 | [props.cellPrefix], |
| 304 | )} |
| 305 | /> |
| 306 | </> |
| 307 | ); |
| 308 | |
| 309 | const TestSortedTableView = ( |
| 310 | props: SortedTableProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…