mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
21 lines
583 B
JavaScript
21 lines
583 B
JavaScript
import React from 'react';
|
|
|
|
const CustomerDeleteAlert = React.lazy(() =>
|
|
import('../Alerts/Customers/CustomerDeleteAlert'),
|
|
);
|
|
const ContactActivateAlert = React.lazy(() =>
|
|
import('../Alerts/Contacts/ContactActivateAlert'),
|
|
);
|
|
const ContactInactivateAlert = React.lazy(() =>
|
|
import('../Alerts/Contacts/ContactInactivateAlert'),
|
|
);
|
|
|
|
/**
|
|
* Customers alert.
|
|
*/
|
|
export default [
|
|
{ name: 'customer-delete', component: CustomerDeleteAlert },
|
|
{ name: 'contact-activate', component: ContactActivateAlert },
|
|
{ name: 'contact-inactivate', component: ContactInactivateAlert },
|
|
];
|