From 43fff9d6f8e1b7ba38078804217bb98f6740af99 Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Thu, 1 Sep 2022 09:31:33 +0300 Subject: Fix default exports --- src/Map.tsx | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/Map.tsx') diff --git a/src/Map.tsx b/src/Map.tsx index 62bebb2..7a49416 100644 --- a/src/Map.tsx +++ b/src/Map.tsx @@ -15,7 +15,7 @@ interface MapProps { images: string[], } -function Map({ slider, images }: MapProps) { +export function Map({ slider, images }: MapProps) { const mapContainer = useRef(null); const map = useRef(null); const [lng, setLng] = useState(35); @@ -60,7 +60,7 @@ function Map({ slider, images }: MapProps) { }} /> ); - +} // return ( // // {images.map((img, i) => { @@ -93,6 +93,3 @@ function Map({ slider, images }: MapProps) { // })} // // ); -} - -export default Map; -- cgit v1.3.1