import React, { useEffect } from 'react'; import { useNavigate, useLocation } from 'react-router-dom'; const Notification = ({ notice }) => { const navigator = useNavigate(); const { pathname } = useLocation(); const handleClick = () => { var navbar_list = document.getElementsByClassName("mypage-nav-list__item"); for(let i=0; i{ localStorage.setItem("notice", notice); }, [notice]); return (
{ notice > 0 &&
{notice}
}
) } export default Notification;