mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-23 08:10:32 +00:00
11 lines
254 B
TypeScript
11 lines
254 B
TypeScript
import React from 'react';
|
|
|
|
const WarehouseDeleteAlert = React.lazy(
|
|
() => import('@/containers/Alerts/Warehouses/WarehouseDeleteAlert'),
|
|
);
|
|
|
|
/**
|
|
* Warehouses alerts.
|
|
*/
|
|
export default [{ name: 'warehouse-delete', component: WarehouseDeleteAlert }];
|