mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
15 lines
374 B
JavaScript
15 lines
374 B
JavaScript
import React from 'react';
|
|
import { Form } from 'formik';
|
|
|
|
import TransferFromAccountFormFields from './TransferFromAccountFormFields';
|
|
import MoneyInFloatingActions from '../MoneyInFloatingActions';
|
|
|
|
export default function TransferFromAccountFormContent() {
|
|
return (
|
|
<Form>
|
|
<TransferFromAccountFormFields />
|
|
<MoneyInFloatingActions />
|
|
</Form>
|
|
);
|
|
}
|