From be94ab40c8d4c0d0fdc8fc4ca1f057e9d9d406fa Mon Sep 17 00:00:00 2001 From: neko113 Date: Fri, 4 Nov 2022 14:04:22 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20hooks=20export=20=EB=B0=A9=EB=B2=95=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=20(#50)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/hooks/index.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/hooks/index.ts b/packages/hooks/index.ts index fa8adea..8aed404 100644 --- a/packages/hooks/index.ts +++ b/packages/hooks/index.ts @@ -1,5 +1,5 @@ -export * from './useDidMountEffect'; -export * from './useDisclosure'; -export * from './useThrottle'; -export * from './useDebounce'; -export * from './useIntersectionObserver'; +export { default as useDidMountEffect } from './useDidMountEffect'; +export { default as useDisclosure } from './useDisclosure'; +export { default as useThrottle } from './useThrottle'; +export { default as useDebounce } from './useDebounce'; +export { default as useIntersectionObserver } from './useIntersectionObserver';