function getWindowDimensions()

in apps/community-website/src/shared/hooks/index.tsx [3:12]


function getWindowDimensions() {
    const { innerWidth: width, innerHeight: height } =
        window && window.innerWidth && window.innerHeight
            ? window
            : { innerWidth: 0, innerHeight: 0 }
    return {
        width,
        height,
    }
}