all repos — caroster @ 18f542aefed624d6e98ce13793390cb07ba2a8d1

[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