mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-13 03:10:31 +00:00
20 lines
440 B
JavaScript
20 lines
440 B
JavaScript
import React from 'react';
|
|
import { Form } from 'formik';
|
|
|
|
import MoneyInFormFields from './MoneyInFormFields';
|
|
import MoneyInFormDialog from './MoneyInFormDialog';
|
|
import MoneyInFloatingActions from './MoneyInFloatingActions';
|
|
|
|
/**
|
|
* Money In form content.
|
|
*/
|
|
export default function MoneyInFormContent() {
|
|
return (
|
|
<Form>
|
|
<MoneyInFormFields />
|
|
<MoneyInFormDialog />
|
|
<MoneyInFloatingActions />
|
|
</Form>
|
|
);
|
|
}
|