DEV Community

Discussion on: How to use Suspense for data fetching in React

Collapse
 
jahnaviraj profile image
jahnaviraj

Tried the exact same thing,
Got this error - ReferenceError: localStorage is not defined

Collapse
 
smitterhane profile image
Smitter

Are you using nextjs? Nextjs renders a page while still at server side hence windo object is still undefined at this point. You may need to adjust your code to wait when window is available like:

useEffect(() => {
  // Perform localStorage action
  const item = localStorage.getItem('key')
}, [])
Enter fullscreen mode Exit fullscreen mode