mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
fix: auto-increment cashflow transactions
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
// @ts-nocheck
|
||||
import React from 'react';
|
||||
import { Form } from 'formik';
|
||||
|
||||
import MoneyInFormFields from './MoneyInFormFields';
|
||||
import MoneyInFormDialog from './MoneyInFormDialog';
|
||||
import MoneyInFloatingActions from './MoneyInFloatingActions';
|
||||
import { MoneyInOutSyncIncrementSettingsToForm } from '../_components';
|
||||
|
||||
/**
|
||||
* Money In form content.
|
||||
*/
|
||||
export default function MoneyInFormContent() {
|
||||
return (
|
||||
<Form>
|
||||
<MoneyInFormFields />
|
||||
<MoneyInFormDialog />
|
||||
<MoneyInFloatingActions />
|
||||
<MoneyInOutSyncIncrementSettingsToForm />
|
||||
</Form>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user