import React from 'react' import {Link} from 'react-router-dom' import styled from 'styled-components' interface Notification { setNotification: (value: boolean) => void } export default function Notification({setNotification}: Notification) { return ( setNotification(false)}> # (닉네임)님에게 메세지가 도착했습니다. # 안읽은 메세지가 있습니다. # (닉네임)님이 (게시글 제목)에 좋아요를 누르셨습니다. # (게시글 제목)에 좋아요가 추가되었습니다. ) } const Wrapper = ..