function getWindowDimensions()

in src/App/hooks/useWindowDimensions.tsx [3:8]


function getWindowDimensions() {
  const { innerWidth: width } = window;
  return {
    width
  };
}