mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
13 lines
289 B
TypeScript
13 lines
289 B
TypeScript
import { DialogsName } from '@/constants/dialogs';
|
|
import { CashflowSheetPdfDialog } from './CashflowSheetPdfDialog';
|
|
|
|
export function CashflowSheetDialogs() {
|
|
return (
|
|
<>
|
|
<CashflowSheetPdfDialog
|
|
dialogName={DialogsName.CashflowSheetPdfPreview}
|
|
/>
|
|
</>
|
|
);
|
|
}
|