- re added tables with pagination;

This commit is contained in:
Vitalii Kiiko
2025-03-31 16:14:27 +02:00
parent 16602129f9
commit 713af3ac32
34 changed files with 1225 additions and 420 deletions

View File

@@ -2,8 +2,7 @@ import React from 'react';
import { __ } from '@wordpress/i18n';
// components
//import AllDomandeArchiveTable from './components/AllDomandeArchiveTable';
import PreInstructorDomandeTable from '../DashboardPreInstructor/components/PreInstructorDomandeTable';
import DomandeTablePreInstructorAsync from '../DashboardPreInstructor/components/DomandeTablePreInstructorAsync';
const DomandeArchive = () => {
return (
@@ -16,7 +15,7 @@ const DomandeArchive = () => {
<div className="appPageSection">
<h2>{__('Domande completate', 'gepafin')}</h2>
<PreInstructorDomandeTable statuses={['CLOSE']} userId={0}/>
<DomandeTablePreInstructorAsync statuses={['CLOSE']} userId={0}/>
</div>
</div>
)