Files
bigcapital/src/containers/Dialogs/RefundVendorCreditDialog/RefundVendorCreditFormContent.js
2021-12-05 19:29:39 +02:00

14 lines
401 B
JavaScript

import React from 'react';
import { Form } from 'formik';
import RefundVendorCreditFormFields from './RefundVendorCreditFormFields';
import RefundVendorCreditFloatingActions from './RefundVendorCreditFloatingActions';
export default function RefundVendorCreditFormContent() {
return (
<Form>
<RefundVendorCreditFormFields />
<RefundVendorCreditFloatingActions />
</Form>
);
}