mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 21:00:31 +00:00
24 lines
591 B
JavaScript
24 lines
591 B
JavaScript
import React from 'react';
|
|
import { TemplateHeader, TemplateContent } from '../components';
|
|
|
|
export default function PaperTemplateHeader({
|
|
defaultLabels,
|
|
headerData: { referenceNo, amount, dueDate, date, billedTo, currency_code },
|
|
}) {
|
|
return (
|
|
<>
|
|
<TemplateHeader defaultLabels={defaultLabels} />
|
|
<TemplateContent
|
|
defaultLabels={defaultLabels}
|
|
billedTo={billedTo}
|
|
date={date}
|
|
referenceNo={referenceNo}
|
|
amount={amount}
|
|
billedFrom={''}
|
|
dueDate={dueDate}
|
|
currencyCode={currency_code}
|
|
/>
|
|
</>
|
|
);
|
|
}
|