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 ( <>
Notifications
8 Invoices have been paid
PDF Icon Invoices have been paid to the company.
11:47 PM Wednesday
Create a new project for client
avatar Img Allow users to like products in your WooCommerce
2:00 PM Wednesday
View All{" "}
); }; export default Notification;