- added v1 of admin page;
This commit is contained in:
@@ -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;
|
||||
@@ -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;
|
||||
10
src/pages/Admin/components/ManageApplDeleteSection/index.js
Normal file
10
src/pages/Admin/components/ManageApplDeleteSection/index.js
Normal 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;
|
||||
10
src/pages/Admin/components/ManageApplStatusSection/index.js
Normal file
10
src/pages/Admin/components/ManageApplStatusSection/index.js
Normal 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;
|
||||
10
src/pages/Admin/components/ManageNdgSection/index.js
Normal file
10
src/pages/Admin/components/ManageNdgSection/index.js
Normal 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;
|
||||
Reference in New Issue
Block a user