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