- added evaluation single page new sections;

This commit is contained in:
Vitalii Kiiko
2024-10-25 17:26:10 +02:00
parent 6e7b79a8ff
commit fb39d0f66d
4 changed files with 173 additions and 16 deletions

View File

@@ -0,0 +1,23 @@
import React from 'react';
import { __ } from '@wordpress/i18n';
// components
import PreInstructorDomandeTable from '../DashboardPreInstructor/components/PreInstructorDomandeTable';
const DomandePreInstructor = () => {
return(
<div className="appPage">
<div className="appPage__pageHeader">
<h1>{__('Domande da valutare', 'gepafin')}</h1>
</div>
<div className="appPage__spacer"></div>
<div className="appPageSection">
<PreInstructorDomandeTable/>
</div>
</div>
)
}
export default DomandePreInstructor;