diff options
Diffstat (limited to 'FrontEnd/src/utilities/hooks.ts')
-rw-r--r-- | FrontEnd/src/utilities/hooks.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/FrontEnd/src/utilities/hooks.ts b/FrontEnd/src/utilities/hooks.ts new file mode 100644 index 00000000..c499b36b --- /dev/null +++ b/FrontEnd/src/utilities/hooks.ts @@ -0,0 +1,11 @@ +import useClickOutside from "./hooks/useClickOutside"; +import useReverseScrollPositionRemember from "./hooks/useReverseScrollPositionRemember"; +import useScrollToTop from "./hooks/useScrollToTop"; +import { useIsSmallScreen } from "./hooks/mediaQuery"; + +export { + useClickOutside, + useReverseScrollPositionRemember, + useScrollToTop, + useIsSmallScreen, +}; |