feat: inventory adjustment detail.

This commit is contained in:
elforjani3
2021-08-26 00:22:47 +02:00
parent 47da64e625
commit 7426ae09a9
15 changed files with 358 additions and 6 deletions

View File

@@ -0,0 +1,25 @@
import React from 'react';
import clsx from 'classnames';
import { Card } from 'components';
import InventoryAdjustmentDetailActionsBar from './InventoryAdjustmentDetailActionsBar';
import InventoryAdjustmentDetailHeader from './InventoryAdjustmentDetailHeader';
import InventoryAdjustmentDetailTable from './InventoryAdjustmentDetailTable';
import InventoryAdjustmentDrawerCls from 'style/components/Drawers/InventoryAdjustmentDrawer.module.scss';
/**
* Inventory adjustment detail
*/
export default function InventoryAdjustmentDetail() {
return (
<div className={clsx(InventoryAdjustmentDrawerCls.detail_panel)}>
<InventoryAdjustmentDetailActionsBar />
<Card>
<InventoryAdjustmentDetailHeader />
<InventoryAdjustmentDetailTable />
</Card>
</div>
);
}