mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
re-structure to monorepo.
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
// @ts-nocheck
|
||||
import React from 'react';
|
||||
|
||||
const EstimateDeleteAlert = React.lazy(
|
||||
() => import('@/containers/Alerts/Estimates/EstimateDeleteAlert'),
|
||||
);
|
||||
const EstimateDeliveredAlert = React.lazy(
|
||||
() => import('@/containers/Alerts/Estimates/EstimateDeliveredAlert'),
|
||||
);
|
||||
const EstimateApproveAlert = React.lazy(
|
||||
() => import('@/containers/Alerts/Estimates/EstimateApproveAlert'),
|
||||
);
|
||||
const EstimateRejectAlert = React.lazy(
|
||||
() => import('@/containers/Alerts/Estimates/EstimateRejectAlert'),
|
||||
);
|
||||
|
||||
/**
|
||||
* Estimates alert.
|
||||
*/
|
||||
export default [
|
||||
{
|
||||
name: 'estimate-delete',
|
||||
component: EstimateDeleteAlert,
|
||||
},
|
||||
{
|
||||
name: 'estimate-deliver',
|
||||
component: EstimateDeliveredAlert,
|
||||
},
|
||||
{
|
||||
name: 'estimate-Approve',
|
||||
component: EstimateApproveAlert,
|
||||
},
|
||||
{
|
||||
name: 'estimate-reject',
|
||||
component: EstimateRejectAlert,
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user