feat: wip invoice customizer

This commit is contained in:
Ahmed Bouhuolia
2024-09-09 19:40:23 +02:00
parent 132c1dfdbe
commit dc18bde6be
18 changed files with 602 additions and 194 deletions

View File

@@ -9,8 +9,8 @@ const InvoiceCustomizeContent = React.lazy(
);
/**
* Refund credit note detail.
* @returns
* Invoice customize drawer.
* @returns {React.ReactNode}
*/
function InvoiceCustomizeDrawerRoot({
name,
@@ -19,12 +19,7 @@ function InvoiceCustomizeDrawerRoot({
payload: {},
}) {
return (
<Drawer
isOpen={isOpen}
name={name}
size={'100%'}
>
<Drawer isOpen={isOpen} name={name} size={'100%'}>
<DrawerSuspense>
<InvoiceCustomizeContent />
</DrawerSuspense>