mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
21 lines
486 B
JavaScript
21 lines
486 B
JavaScript
import React from 'react';
|
|
|
|
const InventoryAdjustmentDeleteAlert = React.lazy(() =>
|
|
import('../Alerts/Items/InventoryAdjustmentDeleteAlert'),
|
|
);
|
|
|
|
const InventoryAdjustmentPublishAlert = React.lazy(() =>
|
|
import('../Alerts/Items/InventoryAdjustmentPublishAlert'),
|
|
);
|
|
|
|
export default [
|
|
{
|
|
name: 'inventory-adjustment-delete',
|
|
component: InventoryAdjustmentDeleteAlert,
|
|
},
|
|
{
|
|
name: 'inventory-adjustment-publish',
|
|
component: InventoryAdjustmentPublishAlert,
|
|
},
|
|
];
|