File size: 431 Bytes
a0fda44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
const useAppHeight = () => {
  const setHeight = () => {
    document.querySelector("#root").style.height = window.innerHeight + "px";
  };

  const deviceWidth = window.matchMedia("(max-width: 1024px)");

  if (deviceWidth.matches) {
    // set an event listener that detects when innerHeight changes:
    window.addEventListener("resize", setHeight);
  }

  // set initial height:
  setHeight();
};

export default useAppHeight;