all repos — caroster @ 2b7fb817e6b5f6f8cec73d78960ce1695fa318a9

[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