fix: reports pdf template

This commit is contained in:
Ahmed Bouhuolia
2025-12-12 23:38:48 +02:00
parent 736f2c4109
commit 3cfb5cdde8
23 changed files with 173 additions and 42 deletions

View File

@@ -0,0 +1,14 @@
import {
FinancialSheetTemplate,
FinancialSheetTemplateProps,
} from '../components/FinancialSheetTemplate';
import { renderSSR } from './render-ssr';
export const renderFinancialSheetTemplateHtml = (
props: FinancialSheetTemplateProps
) => {
return renderSSR(
<FinancialSheetTemplate {...props} />
);
};