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