- added Manage applications page and table of submitted appls;

This commit is contained in:
Vitalii Kiiko
2024-10-23 16:07:56 +02:00
10 changed files with 237 additions and 14 deletions

View File

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