all repos — caroster @ a91b6c5d105a9cd70ff19ccadb8f9e2b1b00016d

[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