Mirror: React hooks for accessible, common web interactions. UI super powers without the UI.
at main 196 B view raw
1import { useEffect, useLayoutEffect } from 'react'; 2 3const useIsomorphicEffect = 4 typeof window !== 'undefined' ? useLayoutEffect : useEffect; 5 6export { useIsomorphicEffect as useLayoutEffect };