Refactor the useTransactions hook into smaller, more manageable files to improve code organization and maintainability. All existing functionality is preserved.
11 lines
259 B
TypeScript
11 lines
259 B
TypeScript
|
|
import { useTransactionsCore } from './useTransactionsCore';
|
|
|
|
/**
|
|
* 메인 트랜잭션 훅
|
|
* useTransactionsCore를 통해 모든 트랜잭션 관련 기능에 접근합니다.
|
|
*/
|
|
export const useTransactions = () => {
|
|
return useTransactionsCore();
|
|
};
|