From 387f47723436d115939b81455a6dc8a4fa5b736d Mon Sep 17 00:00:00 2001 From: John Doe Date: Tue, 12 Sep 2023 19:40:19 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=89=20Implemented=20the=20map=20sectio?= =?UTF-8?q?n=20=F0=9F=9A=A7=20Added=20real=20estate=20map=20page=20?= =?UTF-8?q?=F0=9F=92=A1=20Improved=20code=20readability=20=F0=9F=8C=90=20I?= =?UTF-8?q?ntegrated=20location-based=20features=20=F0=9F=93=8A=20Optimize?= =?UTF-8?q?d=20component=20structure=20=E2=9C=85=20Fixed=20minor=20bugs=20?= =?UTF-8?q?in=20the=20map=20page=20=F0=9F=8E=A8=20Styling=20enhancements?= =?UTF-8?q?=20for=20map=20section=20=F0=9F=93=9D=20Updated=20documentation?= =?UTF-8?q?=20for=20the=20map=20component=20=F0=9F=9B=A0=EF=B8=8F=20Refact?= =?UTF-8?q?ored=20code=20for=20better=20performance?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../listing-real-estate-map/page.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/app/(real-estate-listings)/listing-real-estate-map/page.tsx diff --git a/src/app/(real-estate-listings)/listing-real-estate-map/page.tsx b/src/app/(real-estate-listings)/listing-real-estate-map/page.tsx new file mode 100644 index 0000000..1772155 --- /dev/null +++ b/src/app/(real-estate-listings)/listing-real-estate-map/page.tsx @@ -0,0 +1,14 @@ +import React, { FC } from "react"; +import SectionGridHasMap from "../SectionGridHasMap"; + +export interface ListingRealEstateMapPageProps {} + +const ListingRealEstateMapPage: FC = ({}) => { + return ( +
+ +
+ ); +}; + +export default ListingRealEstateMapPage;