import { Progress, Button } from 'antd' import { downloadFile } from '@components/factory' export const ReportCreationNotify = ({ progressData }) => ( <>
{progressData.operation} стр {progressData.currentPage} из {progressData.totalPages} {progressData.file && ( )} ) ReportCreationNotify.defaultProps = { progressData: { progress: 0.0, operation: 'Создание отчета', currentPage: 0, totalPages: 0, file: null } }