import React from 'react'; import type { CellInfo } from '@/components/AlertMap'; import { HORIZON_LABELS } from './types'; import type { ExtendedAlert } from './types'; interface CellInfoPanelProps { cellInfo: CellInfo; onClose: () => void; } // Cell info panel - shown when clicking grid cell without alert export const CellInfoPanel = React.memo(function CellInfoPanel({ cellInfo, onClose }: CellInfoPanelProps) { return (