// MapBlock v3 — uses real Russia silhouette image (russia-map.jpg) as the base, // overlays clickable city pins with full labels. No mouse tracing. const { useState: useStateMap } = React; function MapBlock() { const { CITIES } = window.__DATA; const [active, setActive] = useStateMap(CITIES[0]); const a = active; return (
{/* City pins overlay */}
{CITIES.map((c) => (
))}
{/* Legend at bottom-left of canvas */}