1 2 3 4 5 6 7 8 9
export let size = { x: window.innerWidth, y: window.innerHeight } window.onresize = () => { size.x = window.innerWidth size.y = window.innerHeight }