import React from 'react'; import Image from 'next/image'; interface MonitoringProps { objectId?: string; onClose?: () => void; } const Monitoring: React.FC = ({ onClose }) => { return (

Зоны мониторинга

{onClose && ( )}
Object Model { const target = e.target as HTMLImageElement; target.style.display = 'none'; }} />
{[1, 2, 3, 4, 5, 6].map((zone) => (
{`Зона { const target = e.target as HTMLImageElement; target.style.display = 'none'; }} />
))}
); }; export default Monitoring;