mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
27 lines
659 B
TypeScript
27 lines
659 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
import '@/style/pages/CustomerOpeningBalance/CustomerOpeningBalance.scss';
|
|
|
|
import CustomerOpeningBalanceForm from './CustomerOpeningBalanceForm';
|
|
import { CustomerOpeningBalanceFormProvider } from './CustomerOpeningBalanceFormProvider';
|
|
|
|
/**
|
|
* Customer opening balance dialog content.
|
|
* @returns
|
|
*/
|
|
export default function CustomerOpeningBalanceDialogContent({
|
|
// #ownProps
|
|
dialogName,
|
|
customerId,
|
|
}) {
|
|
return (
|
|
<CustomerOpeningBalanceFormProvider
|
|
customerId={customerId}
|
|
dialogName={dialogName}
|
|
>
|
|
<CustomerOpeningBalanceForm />
|
|
</CustomerOpeningBalanceFormProvider>
|
|
);
|
|
}
|