(props: { columns: number })
| 1261 | } |
| 1262 | |
| 1263 | function EmptyRow(props: { columns: number }) { |
| 1264 | return ( |
| 1265 | <tr class="empty-row"> |
| 1266 | <td colspan={props.columns}>No rows match the current search.</td> |
| 1267 | </tr> |
| 1268 | ); |
| 1269 | } |
| 1270 | |
| 1271 | function ProviderLink(props: { |
| 1272 | providerId: string; |
nothing calls this directly
no outgoing calls
no test coverage detected