Harry9233's picture
Upload 20790 files
5c05829 verified
import { useSyncExternalStore } from 'use-sync-external-store/shim';
/**
* Determines whether or not the component tree has been hydrated.
*/
export function useIsHydrated() {
return useSyncExternalStore(
subscribe,
() => true,
() => false
);
}
function subscribe() {
return () => {};
}