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