import React from 'react'; import { __ } from '@wordpress/i18n'; // store import { useStoreValue } from '../../store'; // components import DomandeTablePreInstructorAsync from '../DashboardPreInstructor/components/DomandeTablePreInstructorAsync'; const DomandeArchivePreInstructor = () => { const userData = useStoreValue('userData'); return (

{__('Archivio domande', 'gepafin')}

{__('Domande completate', 'gepafin')}

) } export default DomandeArchivePreInstructor;