dyomedea/src/components/map/Map.tsx

14 lines
214 B
TypeScript
Raw Normal View History

2022-10-17 08:37:26 +00:00
import react from 'react';
2022-10-17 10:04:25 +00:00
export interface MapProperties {}
2022-10-17 08:37:26 +00:00
2022-10-17 10:04:25 +00:00
/**
*
* @returns A Map component
*/
export const Map: react.FC<MapProperties> = (props: MapProperties) => {
2022-10-17 08:37:26 +00:00
return <></>;
};
export default Map;