UNPKG
aau-auth-kit-ui
Version:
latest (1.0.1)
1.0.1
Plug & play shadcn/ui components for aau-auth-kit with Next.js integration
aau-auth-kit-ui
/
src
/
hooks
/
use-hydrated.ts
14 lines
(11 loc)
•
239 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import
{ useSyncExternalStore }
from
"react"
function
subscribe
(
) {
return
() =>
{} }
export
function
useIsHydrated
(
) {
return
useSyncExternalStore
( subscribe,
() =>
true
,
() =>
false
) }