import * as React from "react";
import styles from "@/components/_App/TopNavbar/Notification.module.css";
import {
IconButton,
Button,
Typography,
Tooltip,
Menu,
Link,
Badge,
} from "@mui/material";
import NotificationsActiveIcon from "@mui/icons-material/NotificationsActive";
const Notification = () => {
const [anchorEl, setAnchorEl] = React.useState(null);
const open = Boolean(anchorEl);
const handleClick = (event) => {
setAnchorEl(event.currentTarget);
};
const handleClose = () => {
setAnchorEl(null);
};
return (
<>