UNPKG

next-sanity

Version:
13 lines (11 loc) 277 B
import {useSyncExternalStore} from 'react' /** @internal */ export function useIsMounted(): boolean { return useSyncExternalStore( emptySubscribe, () => true, () => false, ) } // eslint-disable-next-line no-empty-function const emptySubscribe = () => () => {}