mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
18 lines
435 B
TypeScript
18 lines
435 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
const ExpenseDeleteAlert = React.lazy(
|
|
() => import('@/containers/Alerts/Expenses/ExpenseDeleteAlert'),
|
|
);
|
|
const ExpensePublishAlert = React.lazy(
|
|
() => import('@/containers/Alerts/Expenses/ExpensePublishAlert'),
|
|
);
|
|
|
|
/**
|
|
* Accounts alert.
|
|
*/
|
|
export default [
|
|
{ name: 'expense-delete', component: ExpenseDeleteAlert },
|
|
{ name: 'expense-publish', component: ExpensePublishAlert },
|
|
];
|