Reactjs – Next.js – ReferenceError: window is not defined
Facing while experimenting with device orientation Here is the code, I am using import React, { useState, useEffect } from 'react'; export default function App() { const [isLandscape, setIsLandscape] = useState(window.innerWidth > window.innerHeight); useEffect(() => { function handleResize() { setIsLandscape(window.innerWidth…