mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-18 18:40:47 -04:00
7 lines
350 B
React
7 lines
350 B
React
// Preserve raw sensor text and units; a sensor's non-on value is never "off".
|
|
export default function ReadOnlyControl({ entity }) {
|
|
return <span className="break-words text-xs text-slate-200">
|
|
{entity.available ? (entity.password ? '••••••' : `${entity.state}${entity.unit ? ` ${entity.unit}` : ''}`) : 'Unavailable'}
|
|
</span>;
|
|
}
|