"use client"; import Image from "next/image"; import Link from "next/link"; import React, { useState } from "react"; import { Dropdown } from "../ui/dropdown/Dropdown"; import { DropdownItem } from "../ui/dropdown/DropdownItem"; export default function NotificationDropdown() { const [isOpen, setIsOpen] = useState(false); const [notifying, setNotifying] = useState(true); function toggleDropdown() { setIsOpen(!isOpen); } function closeDropdown() { setIsOpen(false); } const handleClick = () => { toggleDropdown(); setNotifying(false); }; return (
Notification
View All Notifications
); }