mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
12 lines
257 B
TypeScript
12 lines
257 B
TypeScript
import MovementForm from '@/components/pages/inventory/movement/form/MovementForm';
|
|
|
|
const AddMovement = () => {
|
|
return (
|
|
<div className='w-full p-4 flex flex-row justify-center'>
|
|
<MovementForm />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default AddMovement;
|