Get Account

This commit is contained in:
efrilm 2025-09-12 19:52:46 +07:00
parent 2d69a024c1
commit ce344e4a98

View File

@ -333,6 +333,9 @@ const AccountListTable = () => {
</div> </div>
</div> </div>
<div className='overflow-x-auto'> <div className='overflow-x-auto'>
{isLoading ? (
<Loading />
) : (
<table className={tableStyles.table}> <table className={tableStyles.table}>
<thead> <thead>
{table.getHeaderGroups().map(headerGroup => ( {table.getHeaderGroups().map(headerGroup => (
@ -390,6 +393,7 @@ const AccountListTable = () => {
</tbody> </tbody>
)} )}
</table> </table>
)}
</div> </div>
<TablePagination <TablePagination