Using localStorage in React and Next.js
Nov 15, 2022 · 1 min read · We can't directly access localStorage in React and Next.js. So, for that purpose, here is the custom react hook, that will allow you to access localStorage. import { useEffect, useState } from "react"; export function useLocalStorage<T>(key: string,...
Join discussion


