blob: 8a8591c1ae6c38c7e8a9c2a5f19f4be62728e9a5 (
plain) (
tree)
|
|
// Checks if viewport at invoke time fits mobile dimensions
// isMobileView :: () => Bool
const isMobileView = () => window.matchMedia("screen and (max-width: 575px)").matches
module.exports = isMobileView
|