import React from 'react'; import MapIntroduction from './mapIntroduction'; import AreaDetail from './AreaDetail'; interface IMapInfoPanelProps { className: string, featureProperties: { [key:string]: string | number } | undefined, selectedFeatureId: string | number | undefined } const MapInfoPanel = ({className, featureProperties, selectedFeatureId}:IMapInfoPanelProps) => { return (
{(featureProperties && selectedFeatureId ) ? : }
); }; export default MapInfoPanel;