import React from 'react';
import Icon from '../../Icon/index';
const LargeScreenGISRTitle = (props: IProps) => {
const { layerListEvent } = props;
return (
{
layerListEvent(null, null, null, 'back2D');
}}
/>
GIS地图组件
);
};
export default LargeScreenGISRTitle;
export interface IProps {
layerListEvent: Function;
}