Browse Source

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.
main
John Doe 1 year ago
parent
commit
666a38c0fe
  1. 10
      src/app/(stay-listings)/listing-stay/page.tsx

10
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<ListingStayPageProps> = () => {
return <SectionGridFilterCard className="container pb-24 lg:pb-28" />;
};
export default ListingStayPage;
Loading…
Cancel
Save