feat(FE-147): show Transfer to Laying table

This commit is contained in:
ValdiANS
2025-10-23 11:53:12 +07:00
parent 79b6d6917d
commit e53325cdc5
@@ -1,14 +1,9 @@
import { Icon } from '@iconify/react';
import Button from '@/components/Button';
import TransferToLayingsTable from '@/components/pages/production/transfer-to-laying/TransferToLayingsTable';
const TransferToLaying = () => {
return (
<section className='w-full p-4'>
<h1 className='mb-4'>Transfer to Laying</h1>
<Button href='/production/transfer-to-laying/add' color='primary'>
<Icon icon='ic:round-plus' width={24} height={24} />
Tambah Transfer to Laying
</Button>
<TransferToLayingsTable />
</section>
);
};