mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
19 lines
456 B
TypeScript
19 lines
456 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
const JournalDeleteAlert = React.lazy(
|
|
() => import('@/containers/Alerts/ManualJournals/JournalDeleteAlert'),
|
|
);
|
|
const JournalPublishAlert = React.lazy(
|
|
() => import('@/containers/Alerts/ManualJournals/JournalPublishAlert'),
|
|
);
|
|
|
|
/**
|
|
* Manual journals alerts.
|
|
*/
|
|
|
|
export default [
|
|
{ name: 'journal-delete', component: JournalDeleteAlert },
|
|
{ name: 'journal-publish', component: JournalPublishAlert },
|
|
];
|