--- title: svelte/reactivity/window --- This module exports reactive versions of various `window` values, each of which has a reactive `current` property that you can reference in reactive contexts (templates, [deriveds]($derived) and [effects]($effect)) without using [``](svelte-window) bindings or manually creating your own event listeners. ```svelte

{innerWidth.current}x{innerHeight.current}

``` > MODULE: svelte/reactivity/window