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,23 @@
import React from 'react';
import 'style/pages/RefundCreditNote/RefundCreditNote.scss';
import { RefundCreditNoteFormProvider } from './RefundCreditNoteFormProvider';
import RefundCreditNoteForm from './RefundCreditNoteForm';
/**
* Refund credit note dialog content.
*/
export default function RefundCreditNoteDialogContent({
// #ownProps
dialogName,
creditNoteId,
}) {
return (
<RefundCreditNoteFormProvider
creditNoteId={creditNoteId}
dialogName={dialogName}
>
<RefundCreditNoteForm />
</RefundCreditNoteFormProvider>
);
}