(count: number)
| 449 | } |
| 450 | |
| 451 | const connectionCountLabel = (count: number): string => |
| 452 | count === 0 ? "No connections" : `${count} ${count === 1 ? "connection" : "connections"}`; |
| 453 | |
| 454 | function ToolkitTile(props: { showOwnerLabels: boolean; toolkit: ToolkitResponse }) { |
| 455 | const toolkit = props.toolkit; |