dyomedea/src/components/map/LiveMap.tsx

10 lines
195 B
TypeScript
Raw Normal View History

import react from 'react';
export interface LiveMapProperties {}
export const LiveMap: react.FC<LiveMapProperties> = (props: LiveMapProperties) => {
return <></>;
};
export default LiveMap;