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