Spaces:
Sleeping
Sleeping
| import React from 'react' | |
| export default function MapFrame({ html }) { | |
| if (!html) { | |
| return <div className="empty-box">Mapa indisponivel.</div> | |
| } | |
| return ( | |
| <iframe | |
| title="mapa" | |
| className="map-frame" | |
| srcDoc={html} | |
| sandbox="allow-scripts allow-same-origin allow-popups" | |
| /> | |
| ) | |
| } | |