feat: invoice customize paper preview

This commit is contained in:
Ahmed Bouhuolia
2024-09-10 13:19:11 +02:00
parent 67904f52af
commit f0dfc3d1b0
11 changed files with 474 additions and 171 deletions

View File

@@ -56,7 +56,7 @@ export interface ElementCustomizePaperTemplateProps {
ElementCustomize.PaperTemplate = ({
children,
}: ElementCustomizePaperTemplateProps) => {
return <Box>{children}</Box>;
return <>{children}</>;
};
export interface ElementCustomizeContentProps {
@@ -70,5 +70,5 @@ ElementCustomize.FieldsTab = ({
label,
children,
}: ElementCustomizeContentProps) => {
return <Box>{children}</Box>;
return <>{children}</>;
};