UNPKG

rooks

Version:

Collection of awesome react hooks

11 lines (10 loc) 379 B
import { useEffect } from "react"; /** * useIsomorphicEffect * Resolves to useEffect when "window" is not in scope and useLayout effect in the browser * * @param {Function} callback Callback function to be called on mount * @see https://rooks.vercel.app/docs/hooks/useIsomorphicEffect */ declare const useIsomorphicEffect: typeof useEffect; export { useIsomorphicEffect };