- re added tables with pagination;

This commit is contained in:
Vitalii Kiiko
2025-03-31 16:14:27 +02:00
parent 16602129f9
commit 713af3ac32
34 changed files with 1225 additions and 420 deletions

View File

@@ -3,8 +3,8 @@ import { __ } from '@wordpress/i18n';
import { useNavigate } from 'react-router-dom';
// components
import AllBandiTable from './components/AllBandiTable';
import { Button } from 'primereact/button';
import AllBandiTableAsync from './components/AllBandiTableAsync';
const Bandi = () => {
const navigate = useNavigate();
@@ -28,7 +28,7 @@ const Bandi = () => {
label={__('Crea nuovo bando')} icon="pi pi-plus" iconPos="right"/>
</div>
<AllBandiTable/>
<AllBandiTableAsync/>
</div>
</div>
)