mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 22:30:31 +00:00
re-structure to monorepo.
This commit is contained in:
18
packages/webapp/src/containers/Vendors/VendorsAlerts.tsx
Normal file
18
packages/webapp/src/containers/Vendors/VendorsAlerts.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
// @ts-nocheck
|
||||
import React from 'react';
|
||||
|
||||
const VendorDeleteAlert = React.lazy(
|
||||
() => import('@/containers/Alerts/Vendors/VendorDeleteAlert'),
|
||||
);
|
||||
const VendorActivateAlert = React.lazy(
|
||||
() => import('@/containers/Alerts/Vendors/VendorActivateAlert'),
|
||||
);
|
||||
const VendorInactivateAlert = React.lazy(
|
||||
() => import('@/containers/Alerts/Vendors/VendorInactivateAlert'),
|
||||
);
|
||||
|
||||
export default [
|
||||
{ name: 'vendor-delete', component: VendorDeleteAlert },
|
||||
{ name: 'vendor-activate', component: VendorActivateAlert },
|
||||
{ name: 'vendor-inactivate', component: VendorInactivateAlert },
|
||||
];
|
||||
Reference in New Issue
Block a user