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;