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;