mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-13 11:20:31 +00:00
26 lines
487 B
TypeScript
26 lines
487 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
import { MoneyInDialogProvider } from './MoneyInDialogProvider';
|
|
import MoneyInForm from './MoneyInForm';
|
|
|
|
/**
|
|
* Money in dialog content.
|
|
*/
|
|
export default function MoneyInDialogContent({
|
|
// #ownProps
|
|
dialogName,
|
|
accountId,
|
|
accountType,
|
|
}) {
|
|
return (
|
|
<MoneyInDialogProvider
|
|
accountId={accountId}
|
|
accountType={accountType}
|
|
dialogName={dialogName}
|
|
>
|
|
<MoneyInForm />
|
|
</MoneyInDialogProvider>
|
|
);
|
|
}
|