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 TransferToLayingsTable from '@/components/pages/production/transfer-to-laying/TransferToLayingsTable';
import Button from '@/components/Button';
const TransferToLaying = () => { const TransferToLaying = () => {
return ( return (
<section className='w-full p-4'> <section className='w-full p-4'>
<h1 className='mb-4'>Transfer to Laying</h1> <TransferToLayingsTable />
<Button href='/production/transfer-to-laying/add' color='primary'>
<Icon icon='ic:round-plus' width={24} height={24} />
Tambah Transfer to Laying
</Button>
</section> </section>
); );
}; };