mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-14 11:50:31 +00:00
23 lines
575 B
TypeScript
23 lines
575 B
TypeScript
// @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>
|
|
);
|
|
}
|