import debounce from 'lodash/debounce';
window.addEventListener('resize', debounce(resizeFunction, 100), false);
function resizeFunction() {
// If the window matches the media query then close the menu
if (window.matchMedia('(max-width: 1080px)').matches) {
// Resize things here.
}
}