Files
zellyy-finance/src/hooks/transactions/useTransactions.ts
gpt-engineer-app[bot] d45e1bbf78 Refactor useTransactions hook
Refactor the useTransactions hook into smaller, more manageable files to improve code organization and maintainability. All existing functionality is preserved.
2025-03-16 09:39:56 +00:00

11 lines
259 B
TypeScript

import { useTransactionsCore } from './useTransactionsCore';
/**
* 메인 트랜잭션 훅
* useTransactionsCore를 통해 모든 트랜잭션 관련 기능에 접근합니다.
*/
export const useTransactions = () => {
return useTransactionsCore();
};