Files
lti-web-client/src/app/production/transfer-to-laying/page.tsx
T
2025-10-23 11:53:12 +07:00

12 lines
282 B
TypeScript

import TransferToLayingsTable from '@/components/pages/production/transfer-to-laying/TransferToLayingsTable';
const TransferToLaying = () => {
return (
<section className='w-full p-4'>
<TransferToLayingsTable />
</section>
);
};
export default TransferToLaying;