File size: 268 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
import { useLayoutEffect, useEffect } from 'react'
import { CAN_USE_DOM } from 'slate-dom'
/**
* Prevent warning on SSR by falling back to useEffect when DOM isn't available
*/
export const useIsomorphicLayoutEffect = CAN_USE_DOM
? useLayoutEffect
: useEffect
|