I think it would be better if there was a way to uninstall them. ```js const uninstall = installMediaQueryWatcher(`(min-width: 600px)`, (matches) => { console.log(matches ? 'wide screen' : 'narrow sreen'); }); component.onDestroy(uninstall); ```
I think it would be better if there was a way to uninstall them.