saving progress;

This commit is contained in:
Vitalii Kiiko
2025-03-24 15:51:56 +01:00
parent f2fc9b8b49
commit 5fcb0d765c
27 changed files with 492 additions and 38 deletions

View File

@@ -5,7 +5,9 @@ import { __ } from '@wordpress/i18n';
import DashboardService from '../../service/dashboard-service';
import { pathOr } from 'ramda';
import NumberFlow from '@number-flow/react';
import PreInstructorSoccorsiTable from '../SoccorsoIstruttorioPreInstructor/components/PreInstructorSoccorsiTable';
//import PreInstructorSoccorsiTable from '../SoccorsoIstruttorioPreInstructor/components/PreInstructorSoccorsiTable';
import SoccorsiPreInstructorTableAsync
from '../SoccorsoIstruttorioPreInstructor/components/SoccorsiPreInstructorTableAsync';
const SoccorsoIstruttorioInstructorManager = () => {
const [mainStats, setMainStats] = useState({});
@@ -86,7 +88,8 @@ const SoccorsoIstruttorioInstructorManager = () => {
<div className="appPage__spacer"></div>
<div className="appPageSection">
<PreInstructorSoccorsiTable userId={0}/>
{/*<PreInstructorSoccorsiTable userId={0}/>*/}
<SoccorsiPreInstructorTableAsync userId={0}/>
</div>
</div>
)