import React from 'react' export default function LiveToggle({ current, onSwitch, recordedMap }) { const isLive = current.mode === 'live' const hasRec = current.cam_id && recordedMap[current.cam_id] return (
) }