mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 04:40:32 +00:00
BIG-55: fix customize report in inventory valuation report not working. BIG-56: fix customize report in Inventory item details report not working.
15 lines
460 B
JavaScript
15 lines
460 B
JavaScript
import React from 'react';
|
|
import { ARAgingSummaryGeneralProvider } from './ARAgingSummaryGeneralProvider';
|
|
import ARAgingSummaryHeaderGeneralContent from './ARAgingSummaryHeaderGeneralContent';
|
|
|
|
/**
|
|
* AR Aging Summary - Drawer Header - General Fields - Content.
|
|
*/
|
|
export default function ARAgingSummaryHeaderGeneral() {
|
|
return (
|
|
<ARAgingSummaryGeneralProvider>
|
|
<ARAgingSummaryHeaderGeneralContent />
|
|
</ARAgingSummaryGeneralProvider>
|
|
);
|
|
}
|