mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
13 lines
436 B
TypeScript
13 lines
436 B
TypeScript
import { Stack } from '@/components';
|
|
import { InvoiceCustomizeHeader } from './InvoiceCustomizeHeader';
|
|
import { InvoiceCustomizePreviewContent } from './InvoiceCustomizePreviewContent';
|
|
|
|
export function InvoiceCustomizePreview() {
|
|
return (
|
|
<Stack spacing={0} style={{ borderLeft: '1px solid #D9D9D9' }}>
|
|
<InvoiceCustomizeHeader label={'Preview'} closeButton />
|
|
<InvoiceCustomizePreviewContent />
|
|
</Stack>
|
|
);
|
|
}
|