mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 06:40:31 +00:00
feat(vendor): add vendor opening balance dialog.
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
import React from 'react';
|
||||
|
||||
import 'style/pages/VendorOpeningBalance/VendorOpeningBalance.scss';
|
||||
|
||||
import VendorOpeningBalanceForm from './VendorOpeningBalanceForm';
|
||||
import { VendorOpeningBalanceFormProvider } from './VendorOpeningBalanceFormProvider';
|
||||
|
||||
/**
|
||||
* Vendor Opening balance dialog content.
|
||||
* @returns
|
||||
*/
|
||||
export default function VendorOpeningBalanceDialogContent({
|
||||
// #ownProps
|
||||
dialogName,
|
||||
vendorId,
|
||||
}) {
|
||||
return (
|
||||
<VendorOpeningBalanceFormProvider
|
||||
vendorId={vendorId}
|
||||
dialogName={dialogName}
|
||||
>
|
||||
<VendorOpeningBalanceForm />
|
||||
</VendorOpeningBalanceFormProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user