From cdc37309b8f2dcb4205fba23d77c833f8f1fe0a5 Mon Sep 17 00:00:00 2001 From: JamesPlayer Date: Fri, 7 Feb 2025 10:00:41 +1300 Subject: [PATCH] Exposed useCanExit hook. --- src/hooks/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/hooks/index.ts b/src/hooks/index.ts index 36af5b1f..89663054 100644 --- a/src/hooks/index.ts +++ b/src/hooks/index.ts @@ -4,6 +4,7 @@ * This is a collection of [react hooks](https://reactjs.org/docs/hooks-intro.html) * that can be used in functional components. */ +export { useCanExit } from './useCanExit'; export { useCurrentStateAndParams } from './useCurrentStateAndParams'; export { useIsActive } from './useIsActive'; export { useOnStateChanged } from './useOnStateChanged';