mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
feat: wip invoice customizer
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
import { Box, Group } from '@/components';
|
||||
import { InvoiceCustomizePreview } from './InvoiceCustomizePreview';
|
||||
import { InvoiceCustomizeFields } from './InvoiceCustomizeFields';
|
||||
import { InvoiceCustomizeForm } from './InvoiceCustomizerForm';
|
||||
import { Classes } from '@blueprintjs/core';
|
||||
import { InvoiceCustomizeTabsControllerProvider } from './InvoiceCustomizeTabsController';
|
||||
|
||||
export default function InvoiceCustomizeContent() {
|
||||
return (
|
||||
<Box className={Classes.DRAWER_BODY}>
|
||||
<InvoiceCustomizeForm>
|
||||
<Group spacing={0} align="flex-start">
|
||||
<InvoiceCustomizeTabsControllerProvider>
|
||||
<InvoiceCustomizeFields />
|
||||
<InvoiceCustomizePreview />
|
||||
</InvoiceCustomizeTabsControllerProvider>
|
||||
</Group>
|
||||
</InvoiceCustomizeForm>
|
||||
</Box>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user