🍪 Custom React Hook to Get Cookie Value by Name 🍪
Do you ever find yourself needing to access cookie values in your React applications? I've got you covered with a simple and reusable custom React hook!
useCookie.ts
import { useEffect, useState } from 'react';
// Hook to get the public key from cookie
export function useCookie(cookieName: string): string | null {
const [cookieValue,