feat(FE-147): create Transfer to Laying list page

This commit is contained in:
ValdiANS
2025-10-21 14:55:37 +07:00
parent a088189ed1
commit 4e6d2088e1
@@ -0,0 +1,16 @@
import { Icon } from '@iconify/react';
import Button from '@/components/Button';
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>
</section>
);
};
export default TransferToLaying;