From 666a38c0fedbb6206a9f771a3ec44de14ceded2d Mon Sep 17 00:00:00 2001 From: John Doe Date: Tue, 12 Sep 2023 18:02:54 +0300 Subject: [PATCH] Fix a bug in ListingStayPage. - 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/page.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/app/(stay-listings)/listing-stay/page.tsx diff --git a/src/app/(stay-listings)/listing-stay/page.tsx b/src/app/(stay-listings)/listing-stay/page.tsx new file mode 100644 index 0000000..dd846e3 --- /dev/null +++ b/src/app/(stay-listings)/listing-stay/page.tsx @@ -0,0 +1,10 @@ +import React, { FC } from "react"; +import SectionGridFilterCard from "../SectionGridFilterCard"; + +export interface ListingStayPageProps {} + +const ListingStayPage: FC = () => { + return ; +}; + +export default ListingStayPage;