feat: add refund credit & vendor dialogs.

This commit is contained in:
elforjani13
2021-12-05 19:29:39 +02:00
parent bf99bda616
commit ab48e6092a
20 changed files with 905 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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>
);
}