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