// @ts-nocheck import React, { lazy } from 'react'; import classNames from 'classnames'; import { Dialog, DialogSuspense } from '@/components'; import withDialogRedux from '@/components/DialogReduxConnect'; import { CLASSES } from '@/constants/classes'; import { compose } from '@/utils'; // Lazy loading the content. const ARAgingSummaryPdfDialogContent = lazy( () => import('./ARAgingSummaryPdfDialogContent'), ); /** * Balance sheet pdf preview dialog. * @returns {React.ReactNode} */ function ARAgingSummaryPdfDialogRoot({ dialogName, payload, isOpen }) { return ( ); } export const ARAgingSummaryPdfDialog = compose(withDialogRedux())( ARAgingSummaryPdfDialogRoot, );