UNPKG

swiper

Version:

Most modern mobile touch slider and framework with hardware accelerated transitions

9 lines (7 loc) 289 B
import { useEffect, useLayoutEffect } from 'react'; function useIsomorphicLayoutEffect(callback, deps) { // eslint-disable-next-line if (typeof window === 'undefined') return useEffect(callback, deps); return useLayoutEffect(callback, deps); } export { useIsomorphicLayoutEffect };