mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
16 lines
464 B
TypeScript
16 lines
464 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import { APAgingSummaryGeneralProvider } from './APAgingSummaryGeneralProvider';
|
|
import APAgingSummaryHeaderGeneralContent from './APAgingSummaryHeaderGeneralContent';
|
|
|
|
/**
|
|
* AP Aging Summary - Drawer Header - General panel.
|
|
*/
|
|
export default function APAgingSummaryHeaderGeneral() {
|
|
return (
|
|
<APAgingSummaryGeneralProvider>
|
|
<APAgingSummaryHeaderGeneralContent />
|
|
</APAgingSummaryGeneralProvider>
|
|
);
|
|
}
|