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