GoogleMap.js 629 Bytes
import React from "react";

const GoogleMap = () => {
  return (
    <div className="maps my-map-container">
      <div className="iframe-wrapper">
        <iframe
          src="https://www.google.com/maps/d/u/0/embed?mid=1-Y3WcCdJ8YQ9m2K72Fi9VvyxN_Kccc8&ehbc=2E312F&noprof=1"
          width="100%"
          height="480"
          style={{ border: 0 }}
          allowFullScreen
          loading="lazy"
          referrerPolicy="no-referrer-when-downgrade"
        ></iframe>
        {/* overlay to hide header */}
        <div className="iframe-header-mask"></div>
      </div>
    </div>
  );
};

export default GoogleMap;