{/* Header */}
{callerDisconnected ? 'Call Disconnected' : 'End Call'}
{callerDisconnected
? `${callerName} disconnected. What was the outcome?`
: `Select a reason to end the call with ${callerName}.`
}
{/* Disposition options */}
{dispositionOptions.map((option) => {
const isSelected = selected === option.value;
return (
);
})}
{/* Footer */}
)}