import { Progress, Button } from "antd" import { downloadFile } from "../../components/factory" export const ReportCreationNotify = ({progressData}) => { progressData = progressData ?? {progress: 0.0, operation: 'Создание отчета'} let downloadButton = null if (progressData.file) downloadButton = const progressText = `${progressData.operation} стр ${progressData.currentPage} из ${progressData.totalPages}` return ( <>
{progressText} {downloadButton} ) }