Files
lti-web-client/src/app/report/production-result/page.tsx
T

12 lines
298 B
TypeScript

import ProductionResultTabs from '@/components/pages/report/production-result/ProductionResultTabs';
const ProductionResultReportPage = () => {
return (
<section className='w-full max-w-full'>
<ProductionResultTabs />
</section>
);
};
export default ProductionResultReportPage;