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