(props: RowProps & {readonly cellPrefix?: string})
| 159 | ); |
| 160 | |
| 161 | const TestRowView = (props: RowProps & {readonly cellPrefix?: string}) => ( |
| 162 | <> |
| 163 | {props.rowId}: |
| 164 | <RowView |
| 165 | {...props} |
| 166 | cellComponent={TestCellView} |
| 167 | getCellComponentProps={(_cellId: Id) => ({ |
| 168 | cellPrefix: props.cellPrefix, |
| 169 | })} |
| 170 | /> |
| 171 | </> |
| 172 | ); |
| 173 | |
| 174 | const TestCellView = (props: CellProps & {readonly cellPrefix?: string}) => ( |
| 175 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…