From f48b5ea344112f622fba1aba7334efc8a2bb2b2a Mon Sep 17 00:00:00 2001 From: "gpt-engineer-app[bot]" <159125892+gpt-engineer-app[bot]@users.noreply.github.com> Date: Sat, 15 Mar 2025 02:35:19 +0000 Subject: [PATCH] Visual edit in Lovable Edited UI in Lovable --- src/components/RecentTransactionsSection.tsx | 22 +++++++------------- 1 file changed, 8 insertions(+), 14 deletions(-) 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