mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-23 16:19:49 +00:00
16 lines
298 B
JavaScript
16 lines
298 B
JavaScript
import React from 'react';
|
|
|
|
const cancelUnlockingPartialAlert = React.lazy(() =>
|
|
import('../Alerts/TransactionLocking/cancelUnlockingPartialAlert'),
|
|
);
|
|
|
|
/**
|
|
* Transactions alerts.
|
|
*/
|
|
export default [
|
|
{
|
|
name: 'cancel-unlocking-partail',
|
|
component: cancelUnlockingPartialAlert,
|
|
},
|
|
];
|