mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-21 23:30:32 +00:00
re-structure to monorepo.
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
// @ts-nocheck
|
||||
import React from 'react';
|
||||
|
||||
const WarehouseTransferDeleteAlert = React.lazy(
|
||||
() =>
|
||||
import(
|
||||
'@/containers/Alerts/WarehousesTransfer/WarehouseTransferDeleteAlert'
|
||||
),
|
||||
);
|
||||
const WarehouseTransferInitiateAlert = React.lazy(
|
||||
() =>
|
||||
import(
|
||||
'@/containers/Alerts/WarehousesTransfer/WarehouseTransferInitiateAlert'
|
||||
),
|
||||
);
|
||||
const TransferredWarehouseTransferAlert = React.lazy(
|
||||
() =>
|
||||
import(
|
||||
'@/containers/Alerts/WarehousesTransfer/TransferredWarehouseTransferAlert'
|
||||
),
|
||||
);
|
||||
|
||||
/**
|
||||
* Warehouses alerts.
|
||||
*/
|
||||
export default [
|
||||
{
|
||||
name: 'warehouse-transfer-delete',
|
||||
component: WarehouseTransferDeleteAlert,
|
||||
},
|
||||
{
|
||||
name: 'warehouse-transfer-initate',
|
||||
component: WarehouseTransferInitiateAlert,
|
||||
},
|
||||
{
|
||||
name: 'transferred-warehouse-transfer',
|
||||
component: TransferredWarehouseTransferAlert,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user