mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
22 lines
564 B
JavaScript
22 lines
564 B
JavaScript
import React from 'react';
|
|
|
|
import 'style/pages/Items/ItemAdjustmentDialog.scss';
|
|
|
|
import { InventoryAdjustmentFormProvider } from './InventoryAdjustmentFormProvider';
|
|
import InventoryAdjustmentForm from './InventoryAdjustmentForm';
|
|
|
|
/**
|
|
* Inventory adjustment form dialog content.
|
|
*/
|
|
export default function InventoryAdjustmentFormDialogContent({
|
|
// #ownProps
|
|
dialogName,
|
|
itemId
|
|
}) {
|
|
return (
|
|
<InventoryAdjustmentFormProvider itemId={itemId} dialogName={dialogName}>
|
|
<InventoryAdjustmentForm />
|
|
</InventoryAdjustmentFormProvider>
|
|
);
|
|
}
|