mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
14 lines
401 B
JavaScript
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>
|
|
);
|
|
}
|