From 8ccf7e29213b5f9d880c3d982deb4a3e2070ac2d Mon Sep 17 00:00:00 2001 From: John Doe Date: Thu, 14 Sep 2023 17:07:01 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fixed=20layout=20issue=20?= =?UTF-8?q?=F0=9F=8C=9F=20Improved=20map=20integration=20=F0=9F=9A=97=20Ad?= =?UTF-8?q?ded=20car=20listing=20component=20=F0=9F=90=9B=20Squashed=20a?= =?UTF-8?q?=20bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/(car-listings)/listing-car-map/page.tsx | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/app/(car-listings)/listing-car-map/page.tsx diff --git a/src/app/(car-listings)/listing-car-map/page.tsx b/src/app/(car-listings)/listing-car-map/page.tsx new file mode 100644 index 0000000..e4b39eb --- /dev/null +++ b/src/app/(car-listings)/listing-car-map/page.tsx @@ -0,0 +1,14 @@ +import React, { FC } from "react"; +import SectionGridHasMap from "../SectionGridHasMap"; + +export interface ListingCarMapPageProps {} + +const ListingCarMapPage: FC = () => { + return ( +
+ +
+ ); +}; + +export default ListingCarMapPage;