mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-25 07:45:47 +00:00
15 lines
431 B
TypeScript
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;
|