22 lines
549 B
TypeScript
22 lines
549 B
TypeScript
"use client";
|
|
import React from "react";
|
|
|
|
const GoogleMap = () => {
|
|
return (
|
|
// basic bootstrap classes. you can change with yours.
|
|
<div className="col-md-12">
|
|
<div className="emdeb-responsive">
|
|
<iframe
|
|
width="600"
|
|
height="450"
|
|
style={{border: "0"}}
|
|
loading="lazy"
|
|
src="https://www.google.com/maps/embed/v1/place?q=place_id:ChIJQ-7Uc0BitocRQZASTWUyN04&key=AIzaSyBS4qOnpT4llaFa_UKMpeWike3lzDvFZ1U"
|
|
></iframe>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default GoogleMap;
|