feat(FE-361): Add logistic-stock report page and table footer

This commit is contained in:
rstubryan
2025-12-09 15:49:59 +07:00
parent d7384752a0
commit b039ec832b
4 changed files with 594 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import SuspenseHelper from '@/components/helper/SuspenseHelper';
const Layout = ({
children,
}: Readonly<{
children: React.ReactNode;
}>) => {
return <SuspenseHelper>{children}</SuspenseHelper>;
};
export default Layout;
+22
View File
@@ -0,0 +1,22 @@
'use client';
import Tabs from '@/components/Tabs';
import PurchasesPerSupplierTab from '@/components/pages/report/logistic-stock/PurchasesPerSupplierTab';
const LogisticStock = () => {
const tabs = [
{
id: '1',
label: 'Rekapitulasi Pembelian Per Supplier',
content: <PurchasesPerSupplierTab />,
},
];
return (
<section className='w-full p-4'>
<Tabs tabs={tabs} variant='boxed' />
</section>
);
};
export default LogisticStock;