mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
13 lines
248 B
JavaScript
13 lines
248 B
JavaScript
import React from 'react';
|
|
|
|
const EasySMSDisconnectAlert = React.lazy(() =>
|
|
import('../../Alerts/EasySMSIntegration/EasySMSDisconnectAlert'),
|
|
);
|
|
|
|
export default [
|
|
{
|
|
name: 'easysms-disconnect',
|
|
component: EasySMSDisconnectAlert,
|
|
},
|
|
];
|