Mohammad Asif cf937194cb Removed un-waned things 1. | 5 tháng trước cách đây | |
---|---|---|
.. | ||
dist | 5 tháng trước cách đây | |
LICENSE | 5 tháng trước cách đây | |
README.md | 5 tháng trước cách đây | |
package.json | 5 tháng trước cách đây |
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
}, []);
};