(
props: TablesProps & {readonly cellPrefix?: string},
)
| 119 | }; |
| 120 | |
| 121 | const TestTablesView = ( |
| 122 | props: TablesProps & {readonly cellPrefix?: string}, |
| 123 | ) => ( |
| 124 | <TablesView |
| 125 | {...props} |
| 126 | tableComponent={TestTableView} |
| 127 | getTableComponentProps={(_tableId: Id) => ({ |
| 128 | cellPrefix: props.cellPrefix, |
| 129 | })} |
| 130 | /> |
| 131 | ); |
| 132 | |
| 133 | const TestTableView = (props: TableProps & {readonly cellPrefix?: string}) => ( |
| 134 | <> |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…