mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
25 lines
983 B
TypeScript
25 lines
983 B
TypeScript
import { Group, Stack } from '@/components';
|
|
import { Classes } from '@blueprintjs/core';
|
|
import { InvoiceSendMailBoot } from './InvoiceSendMailContentBoot';
|
|
import { InvoiceSendMailForm } from './InvoiceSendMailForm';
|
|
import { InvoiceSendMailPreview } from './InvoiceSendMailPreview';
|
|
import { InvoiceSendMailFields } from './InvoiceSendMailFields';
|
|
import { SendMailViewHeader } from '../../Estimates/SendMailViewDrawer/SendMailViewHeader';
|
|
import { SendMailViewLayout } from '../../Estimates/SendMailViewDrawer/SendMailViewLayout';
|
|
|
|
export function InvoiceSendMailContent() {
|
|
return (
|
|
<Stack className={Classes.DRAWER_BODY}>
|
|
<InvoiceSendMailBoot>
|
|
<InvoiceSendMailForm>
|
|
<SendMailViewLayout
|
|
header={<SendMailViewHeader label={'Send Invoice Mail'} />}
|
|
fields={<InvoiceSendMailFields />}
|
|
preview={<InvoiceSendMailPreview />}
|
|
/>
|
|
</InvoiceSendMailForm>
|
|
</InvoiceSendMailBoot>
|
|
</Stack>
|
|
);
|
|
}
|