feat: estimate, receipt, credit note mail preview

This commit is contained in:
Ahmed Bouhuolia
2024-11-17 15:45:55 +02:00
parent d115ebde12
commit 53ab40a075
37 changed files with 1531 additions and 396 deletions

View File

@@ -0,0 +1,11 @@
import {
PaymentReceivedPaperTemplateProps,
PaymentReceivedPaperTemplate,
} from '../components/PaymentReceivedPaperTemplate';
import { renderSSR } from './render-ssr';
export const renderPaymentReceivedPaperTemplateHtml = (
props: PaymentReceivedPaperTemplateProps
) => {
return renderSSR(<PaymentReceivedPaperTemplate {...props} />);
};