Files
lti-web-client/src/app/production/transfer-to-laying/add/page.tsx
T
2025-10-21 14:56:58 +07:00

12 lines
308 B
TypeScript

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;