-
Notifications
You must be signed in to change notification settings - Fork 30
[mission4] 4단계 미션 구현 - 김은빈/5팀 #87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
여기저기서 사용되는 공통 컴포넌트는 component
폴더 안에 common
폴더를 추가하셔서 그 안에서 관리해주시면 더 좋습니다!
/component/common
<> | ||
<li> | ||
<div className="profile"> | ||
<div> | ||
<ul> | ||
<li> | ||
<Link to="/" onClick={handleReset}> | ||
마이페이지 | ||
</Link> | ||
</li> | ||
<li> | ||
<Link | ||
to="/logout" | ||
onClick={() => { | ||
handleReset(); | ||
handleLogout(); | ||
}} | ||
> | ||
로그아웃 | ||
</Link> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</li> | ||
</> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
불필요한 태그들이 존재하는 것 같습니다!!!
63, 88 - <></>
66,86 - <div></div>
는 없어도 될 것 같습니다!
구현 사항
어려웠던 점
구현 이미지