JSFiddle - React, Tailwind, and code Playground

by oilvier

HTML

<script src="https://raw.githubusercontent.com/WickyNilliams/enquire.js/master/dist/enquire.min.js"></script>

JavaScript

enquire.register("only screen and (min-width:740px)", {
    match : function() {
        console.log('>740');
    }
}).register("only screen and (max-width:740px)", {
    match : function() {
        console.log('=740');
    }
}).register("only screen and (max-width:550px)", {
    match : function() {
        console.log('=550');
    }
});