import type { HardwareInfo } from '../../services/api/types'; interface HardwareDetectionDisplayProps { detection: HardwareInfo; } function formatBytes(bytes: number): string { if (bytes === 0) return '0 B'; const k = 1024; const sizes = ['B', 'KB', 'MB', 'GB', 'TB']; const i = Math.floor(Math.log(bytes) / Math.log(k)); return `${parseFloat((bytes / Math.pow(k, i)).toFixed(1))} ${sizes[i]}`; } export function HardwareDetectionDisplay({ detection }: HardwareDetectionDisplayProps) { return (

IP Address

{detection.ip}

{detection.interface && (

Network Interface

{detection.interface}

)} {detection.disks && detection.disks.length > 0 && (

Available Disks

    {detection.disks.map((disk) => (
  • {disk.path} {disk.size > 0 && ( ({formatBytes(disk.size)}) )}
  • ))}
)}
); }