mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
24 lines
569 B
JavaScript
24 lines
569 B
JavaScript
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>
|
|
);
|
|
}
|