interface NoDataOverlayProps { plotTitle?: string; opacity?: number; } export default ({ plotTitle, opacity = 0.97 }: NoDataOverlayProps) => (
{plotTitle === 'No data' ? 'No missing data' : 'No data'}
);