feat(FE-442): create Production Result Report page

This commit is contained in:
ValdiANS
2025-12-30 22:22:23 +07:00
parent e0371b0884
commit 0dd2edfe01
+11
View File
@@ -0,0 +1,11 @@
import ProductionResultContent from '@/components/pages/report/production-result/ProductionResultContent';
const ProductionResultReportPage = () => {
return (
<section className='w-full max-w-7xl pb-16'>
<ProductionResultContent />
</section>
);
};
export default ProductionResultReportPage;