'use client' import React from 'react' import { Card, CardContent, CardHeader, Typography, Box, Link } from '@mui/material' interface LogEntry { id: string action: string timestamp: string user: string } const CashBankDetailTransactionLog: React.FC = () => { const logEntries: LogEntry[] = [ { id: '1', action: 'Terakhir diubah oleh', timestamp: '08 Sep 2025 18:26', user: 'pada' } ] return ( Pantau log perubahan data } sx={{ pb: 1 }} /> {logEntries.map(entry => ( {entry.action} {entry.user} {entry.timestamp} ))} ) } export default CashBankDetailTransactionLog