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