From a3297895262d8eddc2cd807b0de5879010f93e21 Mon Sep 17 00:00:00 2001 From: Kirill Dyachkovskiy <81510334+KirillDyachkovskiy@users.noreply.github.com> Date: Wed, 9 Aug 2023 18:40:12 +0300 Subject: [PATCH] feat(hooks): export `useUniqId` hook (#880) --- src/components/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/index.ts b/src/components/index.ts index b06498c318..e386c1e8bc 100644 --- a/src/components/index.ts +++ b/src/components/index.ts @@ -66,4 +66,5 @@ export * from './utils/interactions'; export * from './utils/xpath'; export * from './utils/useFileInput/useFileInput'; export {useActionHandlers} from './utils/useActionHandlers'; +export {useUniqId} from './utils/useUniqId'; export {getLayersCount} from './utils/LayerManager';