Reverted to edit edt-8539f783-4c38-49ea-9c24-fdafcfaa7d4f: "Check iOS notch handling

Verify that the iOS notch handling feature is working correctly."
This commit is contained in:
gpt-engineer-app[bot]
2025-03-23 10:08:01 +00:00
parent 01e6f56f8a
commit abf8c6ae0c
3 changed files with 10 additions and 17 deletions

View File

@@ -7,13 +7,14 @@ import BudgetStatusDisplay from './budget/BudgetStatusDisplay';
import BudgetInputButton from './budget/BudgetInputButton';
import BudgetInputForm from './budget/BudgetInputForm';
// 이 인터페이스는 이 컴포넌트가 받는 props를 명확히 정의합니다
interface BudgetData {
targetAmount: number;
spentAmount: number;
remainingAmount: number;
}
interface BudgetTabContentProps {
data: {
targetAmount: number;
spentAmount: number;
remainingAmount: number;
};
data: BudgetData;
formatCurrency: (amount: number) => string;
calculatePercentage: (spent: number, target: number) => number;
onSaveBudget: (amount: number, categoryBudgets?: Record<string, number>) => void;