Merge branch 'feature/Cash-flow' of https://github.com/bigcapitalhq/client into feature/Cash-flow

This commit is contained in:
a.bouhuolia
2021-10-31 13:40:50 +02:00
34 changed files with 264 additions and 227 deletions

View File

@@ -1,10 +1,9 @@
import React from 'react';
import PaymentMadeDeleteAlert from 'containers/Alerts/PaymentMades/PaymentMadeDeleteAlert';
export default function PaymentMadesAlerts() {
return (
<div>
<PaymentMadeDeleteAlert name={'payment-made-delete'} />
</div>
);
}
const PaymentMadeDeleteAlert = React.lazy(() =>
import('containers/Alerts/PaymentMades/PaymentMadeDeleteAlert'),
);
export default [
{ name: 'payment-made-delete', component: PaymentMadeDeleteAlert },
];