feat(webapp): wip print preview financial reports

This commit is contained in:
Ahmed Bouhuolia
2024-02-11 16:12:41 +02:00
parent b11c531cf5
commit 09ad725a67
27 changed files with 487 additions and 2 deletions

View File

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