|
пре 9 месеци | |
---|---|---|
.. | ||
dist | пре 9 месеци | |
LICENSE | пре 9 месеци | |
README.md | пре 9 месеци | |
package.json | пре 9 месеци |
A React helper hook for scheduling a layout effect with a fallback to a regular effect for environments where layout effects should not be used (such as server-side rendering).
$ npm i use-isomorphic-layout-effect
You only need to switch useLayoutEffect
with useIsomorphicLayoutEffect
+ import useIsomorphicLayoutEffect from 'use-isomorphic-layout-effect';
- import { useLayoutEffect } from 'react';
const YourComponent = () => {
+ useIsomorphicLayoutEffect(() => {
- useLayoutEffect(() => {
// your implementation
}, []);
};