From f82bed37eeeb7a8b364fbd069c1abe0a80214aaf Mon Sep 17 00:00:00 2001 From: John Doe Date: Mon, 11 Sep 2023 17:37:28 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Added=20LocationMarker=20component?= =?UTF-8?q?=20=F0=9F=8E=A8=20Improved=20code=20formatting=20=F0=9F=90=9B?= =?UTF-8?q?=20Fixed=20a=20bug=20in=20LocationMarker=20=F0=9F=9A=A7=20Work?= =?UTF-8?q?=20in=20progress=20on=20LocationMarker=20=F0=9F=93=9D=20Updated?= =?UTF-8?q?=20LocationMarker=20documentation=20=F0=9F=8C=9F=20Implemented?= =?UTF-8?q?=20LocationMarker=20feature=20=F0=9F=A9=B9=20Refactored=20Locat?= =?UTF-8?q?ionMarker=20component=20=F0=9F=92=A1=20Added=20comments=20to=20?= =?UTF-8?q?LocationMarker=20=F0=9F=9A=80=20Released=20LocationMarker=20v1.?= =?UTF-8?q?0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../AnyReactComponent/LocationMarker.tsx | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/components/AnyReactComponent/LocationMarker.tsx diff --git a/src/components/AnyReactComponent/LocationMarker.tsx b/src/components/AnyReactComponent/LocationMarker.tsx new file mode 100644 index 0000000..33af366 --- /dev/null +++ b/src/components/AnyReactComponent/LocationMarker.tsx @@ -0,0 +1,27 @@ +import React, { FC } from "react"; + +export interface LocationMarkerProps { + lat: number; + lng: number; +} + +const LocationMarker: FC = () => { + return ( +
+ + + +
+ ); +}; + +export default LocationMarker;