feat(FE-62,63,65): implement MovementForm component for managing inventory movements

This commit is contained in:
rstubryan
2025-10-09 14:30:05 +07:00
parent 558a1788dc
commit 1ea9ee3069
4 changed files with 866 additions and 103 deletions
+11
View File
@@ -0,0 +1,11 @@
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;