import React from 'react'; import PropTypes from 'prop-types'; import { mediaUrl } from '../utils/constants'; const propTypes = { forDialog: PropTypes.bool, children: PropTypes.any, className: PropTypes.string }; class EmptyTip extends React.Component { render() { const { className } = this.props; return (
{this.props.children}
); } } EmptyTip.propTypes = propTypes; export default EmptyTip;