Skip to content
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.

Latest commit

 

History

History

useIsomorphicLayoutEffect

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

useIsomorphicLayoutEffect

useLayoutEffect that does not show warning when server-side rendering, see Alex Reardon's article for more info.

Example

import React from 'react';
import { useIsomorphicLayoutEffect } from 'react-essential-tools';

const Demo = ({ value }) => {
  useIsomorphicLayoutEffect(() => {
    window.console.log(value)
  }, [value]);

  return null;
};