Files
lti-web-client/src/app/production/transfer-to-laying/page.tsx
T

15 lines
431 B
TypeScript

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