(props: { labId: string; labName: string })
| 1284 | } |
| 1285 | |
| 1286 | function LabLink(props: { labId: string; labName: string }) { |
| 1287 | return ( |
| 1288 | <a class="lab-link" href={labHref(props.labId)}> |
| 1289 | <span |
| 1290 | class="lab-logo" |
| 1291 | dangerouslySetInnerHTML={{ __html: labLogoSvg(props.labId) }} |
| 1292 | /> |
| 1293 | <span>{props.labName}</span> |
| 1294 | </a> |
| 1295 | ); |
| 1296 | } |
| 1297 | |
| 1298 | function CopyButton(props: { value: string; label: string }) { |
| 1299 | return ( |
nothing calls this directly
no test coverage detected