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 {
ReceiptPaperTemplate,
ReceiptPaperTemplateProps,
} from '../components/ReceiptPaperTemplate';
import { renderSSR } from './render-ssr';
export const renderReceiptPaperTemplateHtml = (
props: ReceiptPaperTemplateProps
) => {
return renderSSR(<ReceiptPaperTemplate {...props} />);
};