Mirror: React hooks for accessible, common web interactions. UI super powers without the UI.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 701829400e78b32f8ad1a132ca3b915e4be4aebd 6 lines 196 B view raw
1import { useEffect, useLayoutEffect } from 'react'; 2 3const useIsomorphicEffect = 4 typeof window !== 'undefined' ? useLayoutEffect : useEffect; 5 6export { useIsomorphicEffect as useLayoutEffect };