Files
bigcapital/shared/pdf-templates/src/renders/render-invoice-paper-template.tsx

14 lines
308 B
TypeScript

import {
InvoicePaperTemplate,
InvoicePaperTemplateProps,
} from '../components/InvoicePaperTemplate';
import { renderSSR } from './render-ssr';
export const renderInvoicePaperTemplateHtml = (
props: InvoicePaperTemplateProps
) => {
return renderSSR(
<InvoicePaperTemplate {...props} />
);
};