UNPKG

houseform

Version:

Simple to use React forms, where your validation and UI code live together in harmony.

9 lines (6 loc) 255 B
/* c8 ignore start */ import { useEffect, useLayoutEffect } from "react"; import { isBrowser } from "./is-browser"; const useIsomorphicLayoutEffect = isBrowser ? useLayoutEffect : useEffect; export default useIsomorphicLayoutEffect; /* c8 ignore end */