Browse Source

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.
main
John Doe 1 year ago
parent
commit
4165b2871f
  1. 14
      src/app/(stay-listings)/listing-stay-map/page.tsx

14
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<ListingStayMapPageProps> = ({}) => {
return (
<div className="container pb-24 lg:pb-28 2xl:pl-10 xl:pr-0 xl:max-w-none">
<SectionGridHasMap />
</div>
);
};
export default ListingStayMapPage;
Loading…
Cancel
Save