From 4165b2871f9f9bac486a1bb934cf36bd7761add6 Mon Sep 17 00:00:00 2001 From: John Doe Date: Tue, 12 Sep 2023 18:01:53 +0300 Subject: [PATCH] Fix a bug in ListingStayMapPage. - The map was not displaying properly on mobile devices. - The bug has been fixed and the map now displays correctly on mobile devices. --- src/app/(stay-listings)/listing-stay-map/page.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/app/(stay-listings)/listing-stay-map/page.tsx diff --git a/src/app/(stay-listings)/listing-stay-map/page.tsx b/src/app/(stay-listings)/listing-stay-map/page.tsx new file mode 100644 index 0000000..420331b --- /dev/null +++ b/src/app/(stay-listings)/listing-stay-map/page.tsx @@ -0,0 +1,14 @@ +import React, { FC } from "react"; +import SectionGridHasMap from "../SectionGridHasMap"; + +export interface ListingStayMapPageProps {} + +const ListingStayMapPage: FC = ({}) => { + return ( +
+ +
+ ); +}; + +export default ListingStayMapPage;