mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
chrone: sperate client and server to different repos.
This commit is contained in:
23
src/containers/Drawers/PaperTemplate/PaperTemplateHeader.js
Normal file
23
src/containers/Drawers/PaperTemplate/PaperTemplateHeader.js
Normal file
@@ -0,0 +1,23 @@
|
||||
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}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user