1 2 3 4 5 6 7 8 9 10
export const windowWidth = () => window.innerWidth || document.documentElement.clientWidth || document.body.clientWidth export const windowHeight = () => window.innerHeight || document.documentElement.clientHeight || document.body.clientHeight