From ecc649e5530ddef2ab23232895923e28f67a3617 Mon Sep 17 00:00:00 2001 From: Chris Thielen Date: Wed, 29 Apr 2020 12:10:17 -0700 Subject: [PATCH] feat: export useIsActive hook --- src/hooks/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hooks/index.ts b/src/hooks/index.ts index a2367f14..ac838f7a 100644 --- a/src/hooks/index.ts +++ b/src/hooks/index.ts @@ -7,6 +7,7 @@ * @packageDocumentation @preferred @module react_hooks */ export { useCurrentStateAndParams } from './useCurrentStateAndParams'; +export { useIsActive } from './useIsActive'; export { useOnStateChanged } from './useOnStateChanged'; export { useParentView } from './useParentView'; export { useRouter } from './useRouter';