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