mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
12 lines
300 B
TypeScript
12 lines
300 B
TypeScript
import {
|
|
ReceiptPaperTemplate,
|
|
ReceiptPaperTemplateProps,
|
|
} from '../components/ReceiptPaperTemplate';
|
|
import { renderSSR } from './render-ssr';
|
|
|
|
export const renderReceiptPaperTemplateHtml = (
|
|
props: ReceiptPaperTemplateProps
|
|
) => {
|
|
return renderSSR(<ReceiptPaperTemplate {...props} />);
|
|
};
|