mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
15 lines
395 B
JavaScript
15 lines
395 B
JavaScript
import React from 'react';
|
|
import { Form } from 'formik';
|
|
|
|
import TransferToAccountFormFields from './TransferToAccountFormFields';
|
|
import TransferToAccountFloatingActions from './TransferToAccountFloatingActions';
|
|
|
|
export default function TransferToAccountFromContent() {
|
|
return (
|
|
<Form>
|
|
<TransferToAccountFormFields />
|
|
<TransferToAccountFloatingActions />
|
|
</Form>
|
|
);
|
|
}
|