feat(FE-113): create Add Transfer to Laying page

This commit is contained in:
ValdiANS
2025-10-21 14:56:58 +07:00
parent 4e6d2088e1
commit 7fdbfe6dfb
@@ -0,0 +1,11 @@
import TransferToLayingForm from '@/components/pages/production/transfer-to-laying/form/TransferToLayingForm';
const AddTransferToLaying = () => {
return (
<div className='w-full p-4 flex flex-row justify-center'>
<TransferToLayingForm />
</div>
);
};
export default AddTransferToLaying;