mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-24 08:39:49 +00:00
chrone: sperate client and server to different repos.
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
import React from 'react';
|
||||
import InventoryAdjustmentDataTable from './InventoryAdjustmentDataTable';
|
||||
|
||||
import { useInventoryAdjustmentsContext } from './InventoryAdjustmentsProvider';
|
||||
import { compose } from 'utils';
|
||||
|
||||
/**
|
||||
* Inventory adjustments view page.
|
||||
*/
|
||||
function InventoryAdjustmentsView({
|
||||
// #withAlertsActions.
|
||||
openAlert,
|
||||
}) {
|
||||
|
||||
return (
|
||||
<InventoryAdjustmentDataTable
|
||||
inventoryAdjustments={inventoryAdjustments}
|
||||
isLoading={isAdjustmentsLoading}
|
||||
onDeleteInventoryAdjustment={handleDeleteInventoryAdjustment}
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
export default compose(withAlertsActions)(InventoryAdjustmentsView);
|
||||
Reference in New Issue
Block a user