JSFiddle - React, Tailwind, and code Playground
by Yin Yong
HTML
<h3 class="err"></h3>
CSS
.err {color: red}
JavaScript
const winProxy = new Proxy(window, {});
try {
winProxy.matchMedia('screen');
} catch (e) {
document.querySelector('.err').innerText = e.message
}