diff --git a/src/contexts/budget/BudgetContext.tsx b/src/contexts/budget/BudgetContext.tsx index 30ca899..ed57b56 100644 --- a/src/contexts/budget/BudgetContext.tsx +++ b/src/contexts/budget/BudgetContext.tsx @@ -2,7 +2,7 @@ import React from 'react'; import { useBudgetState } from './useBudgetState'; import { BudgetContext, BudgetContextType } from './useBudget'; -import { BudgetPeriod, Transaction } from './types'; +import { BudgetPeriod, Transaction, BudgetData } from './types'; // 컨텍스트 프로바이더 컴포넌트 export const BudgetProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => { @@ -20,4 +20,4 @@ export { useBudget } from './useBudget'; export type { BudgetContextType } from './useBudget'; // types.ts에서 타입들을 export type으로 내보냅니다 -export type { BudgetPeriod, Transaction } from './types'; +export type { BudgetPeriod, Transaction, BudgetData } from './types';