JSFiddle - React, Tailwind, and code Playground
JavaScript
if (matchMedia('print')) {
var mql = matchMedia('print');
mql.addListener(function(mql) {
if(mql.matches) {
console.log('Printed!');
}
});
} else {
console.log('matchMedia not supported');
}