import { Dialog } from 'primereact/dialog'; import { Button } from 'primereact/button'; export default function DiscDetectedDialog({ visible, device, onHide, onAnalyze, busy }) { return (

Laufwerk: {device?.path || 'unbekannt'}

Disk-Label: {device?.discLabel || 'n/a'}

Laufwerks-Label: {device?.label || 'n/a'}

Modell: {device?.model || 'n/a'}

); }