Files
lti-web-client/src/app/master-data/nonstock/add/page.tsx
T
2025-10-02 12:02:21 +07:00

12 lines
259 B
TypeScript

import NonstockForm from '@/components/pages/master-data/nonstock/form/NonstockForm';
const AddNonstock = () => {
return (
<div className='w-full p-4 flex flex-row justify-center'>
<NonstockForm />
</div>
);
};
export default AddNonstock;