import React, { useEffect, useState } from 'react'; import { useHistory, Link } from 'react-router-dom'; const Notification = ({ notice }) => { const history = useHistory(); 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;