gui-sparim's picture
Upload 69 files
010c33f verified
raw
history blame contribute delete
319 Bytes
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"
/>
)
}