|
@ -0,0 +1,14 @@ |
|
|
|
|
|
import React, { FC } from "react"; |
|
|
|
|
|
import SectionGridHasMap from "../SectionGridHasMap"; |
|
|
|
|
|
|
|
|
|
|
|
export interface ListingExperiencesMapPageProps {} |
|
|
|
|
|
|
|
|
|
|
|
const ListingExperiencesMapPage: FC<ListingExperiencesMapPageProps> = ({}) => { |
|
|
|
|
|
return ( |
|
|
|
|
|
<div className="container pb-24 lg:pb-28 2xl:pl-10 xl:pr-0 xl:max-w-none"> |
|
|
|
|
|
<SectionGridHasMap /> |
|
|
|
|
|
</div> |
|
|
|
|
|
); |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
export default ListingExperiencesMapPage; |