mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
24 lines
496 B
TypeScript
24 lines
496 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
const CancelMainSubscriptionAlert = React.lazy(
|
|
() => import('./CancelMainSubscriptionAlert'),
|
|
);
|
|
const ResumeMainSubscriptionAlert = React.lazy(
|
|
() => import('./ResumeMainSubscriptionAlert'),
|
|
);
|
|
|
|
/**
|
|
* Subscription alert.
|
|
*/
|
|
export const SubscriptionAlerts = [
|
|
{
|
|
name: 'cancel-main-subscription',
|
|
component: CancelMainSubscriptionAlert,
|
|
},
|
|
{
|
|
name: 'resume-main-subscription',
|
|
component: ResumeMainSubscriptionAlert,
|
|
},
|
|
];
|