Using localStorage in React and Next.js
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,...
cb-ashik.hashnode.dev1 min read