mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
18 lines
425 B
JavaScript
18 lines
425 B
JavaScript
import React from 'react';
|
|
|
|
const JournalDeleteAlert = React.lazy(() =>
|
|
import('../../Alerts/ManualJournals/JournalDeleteAlert'),
|
|
);
|
|
const JournalPublishAlert = React.lazy(() =>
|
|
import('../../Alerts/ManualJournals/JournalPublishAlert'),
|
|
);
|
|
|
|
/**
|
|
* Manual journals alerts.
|
|
*/
|
|
|
|
export default [
|
|
{ name: 'journal-delete', component: JournalDeleteAlert },
|
|
{ name: 'journal-publish', component: JournalPublishAlert },
|
|
];
|