UNPKG

@datalayer/core

Version:
12 lines (11 loc) 413 B
/* * Copyright (c) 2023-2025 Datalayer, Inc. * Distributed under the terms of the Modified BSD License. */ import { useEffect, useLayoutEffect } from 'react'; const useIsomorphicLayoutEffect = typeof window !== 'undefined' && typeof window.document !== 'undefined' && typeof window.document.createElement !== 'undefined' ? useLayoutEffect : useEffect; export default useIsomorphicLayoutEffect;