feat(FE-361): Add logistic stock tabs and tweak styles

This commit is contained in:
rstubryan
2025-12-09 20:19:00 +07:00
parent f87854ed07
commit 8a7149c123
2 changed files with 12 additions and 2 deletions
+11 -1
View File
@@ -10,11 +10,21 @@ const LogisticStock = () => {
label: 'Rekapitulasi Pembelian Per Supplier',
content: <PurchasesPerSupplierTab />,
},
{
id: '2',
label: 'Rekapitulasi Pemakaian Barang',
content: <PurchasesPerSupplierTab />,
},
{
id: '3',
label: 'Rekapitulasi Stock Persediaan Barang',
content: <PurchasesPerSupplierTab />,
},
];
return (
<section className='w-full p-4'>
<Tabs tabs={tabs} variant='boxed' />
<Tabs tabs={tabs} variant='lifted' />
</section>
);
};