Files
bigcapital/packages/webapp/src/containers/FinancialStatements/CashFlowStatement/CashflowSheetDialogs.tsx
2024-02-11 16:12:41 +02:00

13 lines
289 B
TypeScript

import { DialogsName } from '@/constants/dialogs';
import { CashflowSheetPdfDialog } from './CashflowSheetPdfDialog';
export function CashflowSheetDialogs() {
return (
<>
<CashflowSheetPdfDialog
dialogName={DialogsName.CashflowSheetPdfPreview}
/>
</>
);
}