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 ( ); } export default compose(withAlertsActions)(InventoryAdjustmentsView);