mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
19 lines
372 B
JavaScript
19 lines
372 B
JavaScript
import React from 'react';
|
|
import { InvoiceDrawerProvider } from './InvoiceDrawerProvider';
|
|
import InvoicePaper from './InvoicePaper';
|
|
|
|
/**
|
|
* Invoice drawer content.
|
|
*/
|
|
export default function InvoiceDrawerContent({
|
|
// #ownProp
|
|
invoiceId,
|
|
}) {
|
|
|
|
return (
|
|
<InvoiceDrawerProvider invoiceId={invoiceId}>
|
|
<InvoicePaper />
|
|
</InvoiceDrawerProvider>
|
|
);
|
|
}
|