mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
22 lines
511 B
JavaScript
22 lines
511 B
JavaScript
import React from 'react';
|
|
import { TemplateHeader, TemplateContent } from '../components';
|
|
|
|
export default function PaymentPaperTemplateHeader({
|
|
defaultLabels,
|
|
headerData: { referenceNo, amount, date, billedTo },
|
|
}) {
|
|
return (
|
|
<>
|
|
<TemplateHeader defaultLabels={defaultLabels} />
|
|
<TemplateContent
|
|
defaultLabels={defaultLabels}
|
|
billedTo={billedTo}
|
|
date={date}
|
|
referenceNo={referenceNo}
|
|
amount={amount}
|
|
billedFrom={''}
|
|
/>
|
|
</>
|
|
);
|
|
}
|