как использовать window.matchMedia в next.js с темой компонентов стиля?
#reactjs #next.js #media-queries #styled-components Вопрос: У меня есть тема: const smartPhonePortrait = 320; const theme = { isCompact: typeof window !== 'undefined' ? window.matchMedia(`(min-width:${smartPhonePortrait}px)`).matches : false }; export default theme;…