(
props: SortedTableProps & {readonly cellPrefix?: string},
)
| 144 | ); |
| 145 | |
| 146 | const TestSortedTableView = ( |
| 147 | props: SortedTableProps & {readonly cellPrefix?: string}, |
| 148 | ) => ( |
| 149 | <> |
| 150 | {props.tableId},{props.cellId}: |
| 151 | <SortedTableView |
| 152 | {...props} |
| 153 | rowComponent={TestRowView} |
| 154 | getRowComponentProps={(_rowId: Id) => ({ |
| 155 | cellPrefix: props.cellPrefix, |
| 156 | })} |
| 157 | /> |
| 158 | </> |
| 159 | ); |
| 160 | |
| 161 | const TestRowView = (props: RowProps & {readonly cellPrefix?: string}) => ( |
| 162 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…