all repos — caroster @ 0970de6bc377256a7fc5943751cb5791b1ae768a

[Octree] Group carpool to your event https://caroster.io

frontend/hooks/useIsomorphicLayoutEffect.ts (view raw)

1import { useEffect, useLayoutEffect } from 'react'
2
3const useIsomorphicLayoutEffect =
4  typeof window !== 'undefined' ? useLayoutEffect : useEffect
5
6export default useIsomorphicLayoutEffect