mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
14 lines
300 B
TypeScript
14 lines
300 B
TypeScript
'use client';
|
|
|
|
import ProductionStandardForm from '@/components/pages/master-data/production-standard/form/ProductionStandardForm';
|
|
|
|
const AddProductionStandardPage = () => {
|
|
return (
|
|
<>
|
|
<ProductionStandardForm formType='add' />
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default AddProductionStandardPage;
|