diff --git a/src/app/(experience-listings)/listing-experiences-map/page.tsx b/src/app/(experience-listings)/listing-experiences-map/page.tsx new file mode 100644 index 0000000..efce76f --- /dev/null +++ b/src/app/(experience-listings)/listing-experiences-map/page.tsx @@ -0,0 +1,14 @@ +import React, { FC } from "react"; +import SectionGridHasMap from "../SectionGridHasMap"; + +export interface ListingExperiencesMapPageProps {} + +const ListingExperiencesMapPage: FC = ({}) => { + return ( +
+ +
+ ); +}; + +export default ListingExperiencesMapPage;