https://emoji-diary-ver.firebaseapp.com/
메인 페이지 | 작성 페이지 | 수정 페이지 | 읽기 페이지 |
---|---|---|---|
if (!data) {
return (
<div className="DiaryPage-message">
요청하신 페이지를 찾을 수 없습니다. <br /> 입력하신 주소를 다시 확인해
주세요.
<br />
<p onClick={() => navigate('/home')}>이전 페이지로 돌아가기</p>
</div>
);
} else {
const curEmotionData = emotionList.find(
(it) => parseInt(it.emotion_id) === parseInt(data.emotion)
);