import { Empty } from 'antd'; import classNames from 'classnames'; interface Props { className?: string; imgUrl?: string; } const MyEmpty: React.FC = ({ className, imgUrl = '/pictures/empty.png' }) => { return (
); }; export default MyEmpty;