UNPKG

@sanity/ui

Version:

The Sanity UI components.

16 lines (13 loc) 355 B
import {useSyncExternalStore} from 'react' /** * Some components should only render after mounting to the DOM, and not be rendered at all during SSR renderToString or equivalent. * @public */ export function useMounted(): boolean { return useSyncExternalStore( subscribe, () => true, () => false, ) } const subscribe = () => () => {}