mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
33 lines
789 B
TypeScript
33 lines
789 B
TypeScript
'use client';
|
|
|
|
import Tabs from '@/components/Tabs';
|
|
import PurchasesPerSupplierTab from '@/components/pages/report/logistic-stock/tab/PurchasesPerSupplierTab';
|
|
|
|
const LogisticStockTabs = () => {
|
|
const tabs = [
|
|
{
|
|
id: '1',
|
|
label: 'Rekapitulasi Pembelian Per Supplier',
|
|
content: <PurchasesPerSupplierTab />,
|
|
},
|
|
// {
|
|
// id: '2',
|
|
// label: 'Rekapitulasi Pemakaian Barang',
|
|
// content: 'Rekapitulasi Pemakaian Barang Tab',
|
|
// },
|
|
// {
|
|
// id: '3',
|
|
// label: 'Rekapitulasi Stock Persediaan Barang',
|
|
// content: 'Rekapitulasi Stock Persediaan Barang Tab',
|
|
// },
|
|
];
|
|
|
|
return (
|
|
<section className='w-full p-4'>
|
|
<Tabs tabs={tabs} variant='lifted' />
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default LogisticStockTabs;
|