(props: TableProps & {readonly cellPrefix?: string})
| 131 | ); |
| 132 | |
| 133 | const TestTableView = (props: TableProps & {readonly cellPrefix?: string}) => ( |
| 134 | <> |
| 135 | {props.tableId}: |
| 136 | <TableView |
| 137 | {...props} |
| 138 | rowComponent={TestRowView} |
| 139 | getRowComponentProps={(_rowId: Id) => ({ |
| 140 | cellPrefix: props.cellPrefix, |
| 141 | })} |
| 142 | /> |
| 143 | </> |
| 144 | ); |
| 145 | |
| 146 | const TestSortedTableView = ( |
| 147 | props: SortedTableProps & {readonly cellPrefix?: string}, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…