fix: auto-increment cashflow transactions

This commit is contained in:
a.bouhuolia
2023-05-23 13:56:35 +02:00
parent 40ef02f215
commit 0c689459cb
33 changed files with 166 additions and 518 deletions

View File

@@ -0,0 +1,25 @@
// @ts-nocheck
import React from 'react';
import { MoneyInDialogProvider } from './MoneyInDialogProvider';
import MoneyInForm from './MoneyInForm';
/**
* Money in dialog content.
*/
export default function MoneyInDialogContent({
// #ownProps
dialogName,
accountId,
accountType,
}) {
return (
<MoneyInDialogProvider
accountId={accountId}
accountType={accountType}
dialogName={dialogName}
>
<MoneyInForm />
</MoneyInDialogProvider>
);
}