// @ts-nocheck import React from 'react'; import { AnchorButton } from '@blueprintjs/core'; import { DialogContent, PdfDocumentPreview, T } from '@/components'; import { usePdfPaymentReceive } from '@/hooks/query'; import withDialogActions from '@/containers/Dialog/withDialogActions'; import { compose } from '@/utils'; function PaymentReceivePdfPreviewDialogContent({ subscriptionForm: { paymentReceiveId }, }) { const { isLoading, pdfUrl, filename } = usePdfPaymentReceive(paymentReceiveId); return (
); } export default compose(withDialogActions)( PaymentReceivePdfPreviewDialogContent, );