feat(financial statement): sales by items.

This commit is contained in:
elforjani3
2021-03-29 19:30:02 +02:00
parent 0567b42e34
commit 0479614b82
11 changed files with 579 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import React from 'react';
import FinancialStatementDateRange from 'containers/FinancialStatements/FinancialStatementDateRange';
/**
* sells by items - Drawer header - General panel.
*/
export default function SalesByItemsHeaderGeneralPanel() {
return (
<div>
<FinancialStatementDateRange />
</div>
);
}