- added v1 of admin page;

This commit is contained in:
Vitalii Kiiko
2026-03-20 16:57:16 +01:00
parent 12f9c25bdc
commit 431f628217
8 changed files with 117 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import React from 'react';
import { __ } from '@wordpress/i18n';
const ManageAmendmentExtendSection = () => {
return <div className="appPageSection">
<h2>{__('Estensione soccorso istruttorio', 'gepafin')}</h2>
</div>
}
export default ManageAmendmentExtendSection;

View File

@@ -0,0 +1,10 @@
import React from 'react';
import { __ } from '@wordpress/i18n';
const ManageAmendmentReopenSection = () => {
return <div className="appPageSection">
<h2>{__('Riapertura soccorso istruttorio', 'gepafin')}</h2>
</div>
}
export default ManageAmendmentReopenSection;

View File

@@ -0,0 +1,10 @@
import React from 'react';
import { __ } from '@wordpress/i18n';
const ManageApplDeleteSection = ({ canViewDeleted, canDeleteConfirm, canDelete }) => {
return <div className="appPageSection">
<h2>{__('Gestione domande eliminate', 'gepafin')}</h2>
</div>
}
export default ManageApplDeleteSection;

View File

@@ -0,0 +1,10 @@
import React from 'react';
import { __ } from '@wordpress/i18n';
const ManageApplStatusSection = () => {
return <div className="appPageSection">
<h2>{__('Gestione stato domande', 'gepafin')}</h2>
</div>
}
export default ManageApplStatusSection;

View File

@@ -0,0 +1,10 @@
import React from 'react';
import { __ } from '@wordpress/i18n';
const ManageNdgSection = () => {
return <div className="appPageSection">
<h2>{__('Gestione NDG', 'gepafin')}</h2>
</div>
}
export default ManageNdgSection;