// @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 CashflowSheetPdfDialogContent = lazy( () => import('./CashflowSheetPdfDialogContent'), ); /** * Cashflow sheet pdf preview dialog. * @returns {React.ReactNode} */ function CashflowSheetPdfDialogRoot({ dialogName, payload, isOpen }) { return ( ); } export const CashflowSheetPdfDialog = compose(withDialogRedux())( CashflowSheetPdfDialogRoot, );