feat: add cancel unlocking alert.

This commit is contained in:
elforjani13
2021-12-13 17:36:48 +02:00
parent 8e18d4a0dc
commit c124002605
8 changed files with 180 additions and 31 deletions

View File

@@ -0,0 +1,15 @@
import React from 'react';
const cancelUnlockingPartialAlert = React.lazy(() =>
import('../Alerts/TransactionLocking/cancelUnlockingPartialAlert'),
);
/**
* Transactions alerts.
*/
export default [
{
name: 'cancel-unlocking-partail',
component: cancelUnlockingPartialAlert,
},
];