Remove debug login page and refactor TransactionsTable to utilize new utility functions and cell renderers for improved code organization and maintainability.

This commit is contained in:
sebseb7
2025-07-20 05:06:28 +02:00
parent 992adc7bcf
commit b9af7694a0
11 changed files with 301 additions and 547 deletions

View File

@@ -0,0 +1,11 @@
import React from 'react';
const RecipientRenderer = (params) => {
return (
<span style={{ fontSize: '0.7rem', lineHeight: '1.2' }}>
{params.value}
</span>
);
};
export default RecipientRenderer;