Skip to content

Instantly share code, notes, and snippets.

@yanns1

yanns1/block3.js Secret

Created June 29, 2020 17:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yanns1/e5d2c4b353e670af61bfffca2bcdc2a8 to your computer and use it in GitHub Desktop.
Save yanns1/e5d2c4b353e670af61bfffca2bcdc2a8 to your computer and use it in GitHub Desktop.
// I'm borrowing the MDN doc notation here: "mql" stands for "media query list".
const mql = window.matchMedia('(max-width: 600px)');
let mobileView = mql.matches;
if (mobileView) {
setNavInnerHTML(Component1);
} else {
setNavInnerHTML(Component2);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment