import React from 'react'; import PropTypes from 'prop-types'; /** * @ngdoc react * @name PanelInfo * @description Information displayed in the middle of a panel */ const PanelInfo: React.StatelessComponent = ({heading, description}) => (
{heading &&

{heading}

} {description &&

{description}

}
); PanelInfo.propTypes = { heading: PropTypes.string, description: PropTypes.string, }; export default PanelInfo;