mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
14 lines
308 B
TypeScript
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} />
|
|
);
|
|
};
|