mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
12 lines
298 B
TypeScript
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;
|