aboutsummaryrefslogtreecommitdiff
path: root/packages/web-util/src/hooks/index.ts
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2023-05-19 13:24:30 -0300
committerSebastian <sebasjm@gmail.com>2023-05-19 13:24:30 -0300
commit35cc13e229ddc4953a1e68b6b7ea18c54eb9a70b (patch)
treefc2b54d8a148396676fc01e8a3b8332ea6b79216 /packages/web-util/src/hooks/index.ts
parent38c65cc84ad0b41ccccf479fd55d0df21f0afe86 (diff)
downloadwallet-core-35cc13e229ddc4953a1e68b6b7ea18c54eb9a70b.tar.xz
imported useNotifications, new memory storage hook and fixed but in localstorage
Diffstat (limited to 'packages/web-util/src/hooks/index.ts')
-rw-r--r--packages/web-util/src/hooks/index.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/web-util/src/hooks/index.ts b/packages/web-util/src/hooks/index.ts
index e5cb54e21..ae8872497 100644
--- a/packages/web-util/src/hooks/index.ts
+++ b/packages/web-util/src/hooks/index.ts
@@ -1,5 +1,11 @@
export { useLang } from "./useLang.js";
export { useLocalStorage } from "./useLocalStorage.js";
+export { useMemoryStorage } from "./useMemoryStorage.js";
+export {
+ useNotifications,
+ notifyError,
+ notifyInfo,
+} from "./useNotifications.js";
export {
useAsyncAsHook,
HookError,