mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
feat: add refund credit & vendor dialogs.
This commit is contained in:
@@ -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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user