Is it possible to have a callback (or something eq...
# javascript
d
Is it possible to have a callback (or something equivalent) in Kotlin/React to detect changes of the browser width? for example in case the browser window is resized
b
Copy code
kotlinx.browser.window.addEventListener("resize", yourCallback);
d
great! thanks