- 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 ManageApplDeleteSection = ({ canViewDeleted, canDeleteConfirm, canDelete }) => {
return <div className="appPageSection">
<h2>{__('Gestione domande eliminate', 'gepafin')}</h2>
</div>
}
export default ManageApplDeleteSection;