diff --git a/src/components/RecentTransactionsSection.tsx b/src/components/RecentTransactionsSection.tsx index cd68722..abf264e 100644 --- a/src/components/RecentTransactionsSection.tsx +++ b/src/components/RecentTransactionsSection.tsx @@ -1,26 +1,20 @@ - import React from 'react'; import TransactionCard, { Transaction } from '@/components/TransactionCard'; - interface RecentTransactionsSectionProps { transactions: Transaction[]; } - -const RecentTransactionsSection: React.FC = ({ transactions }) => { - return ( - <> +const RecentTransactionsSection: React.FC = ({ + transactions +}) => { + return <>

최근 지출

- {transactions.map(transaction => ( - - ))} + {transactions.map(transaction => )}
- +
- - ); + ; }; - -export default RecentTransactionsSection; +export default RecentTransactionsSection; \ No newline at end of file