import { Box, Button, IconButton, Paper, Table, TableBody, TableCell, TableContainer, TableHead, TableRow, Typography } from '@mui/material'; import CheckCircleIcon from '@mui/icons-material/CheckCircle'; import CancelIcon from '@mui/icons-material/Cancel'; import MoreVertIcon from '@mui/icons-material/MoreVert'; const transactions = [ { id: '1049078821', user: '17', created: '2025-06-17 16:45', type: 'BestPayWithdrawal', amount: '-787.49 TRY', psp: 'BestPay' }, { id: '1049078822', user: '17', created: '2025-06-17 16:45', type: 'BestPayWithdrawal', amount: '-787.49 TRY', psp: 'BestPay' }, { id: '1049078823', user: '17', created: '2025-06-17 16:45', type: 'BestPayWithdrawal', amount: '-787.49 TRY', psp: 'BestPay' }, { id: '1049078824', user: '17', created: '2025-06-17 16:45', type: 'BestPayWithdrawal', amount: '-787.49 TRY', psp: 'BestPay' } ]; export const TransactionsWaitingApproval = () => { return ( Transactions Waiting for Approval ID User Created Type Amount PSP Action {transactions.map((tx) => ( {tx.id} {tx.user} {tx.created} {tx.type} {tx.amount} {tx.psp} ))}
); }