-
Notifications
You must be signed in to change notification settings - Fork 5
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
[FE] issue134: 내 스터디 페이지 생성 #166
Conversation
Co-authored-by: TaeYoon <[email protected]>
Co-authored-by: TaeYoon <[email protected]>
Co-authored-by: TaeYoon <[email protected]>
Co-authored-by: TaeYoon <[email protected]>
Co-authored-by: TaeYoon <[email protected]>
Co-authored-by: TaeYoon <[email protected]>
Co-authored-by: TaeYoon <[email protected]>
import reviewJSON from './reviews.json'; | ||
import studiesJSON from './studies.json'; |
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.
절대경로 사용해야겠네용
{myStudies.map(myStudy => ( | ||
<li key={myStudy.id}> | ||
<MyStudyCard | ||
title={myStudy.title} |
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.
myStudies의 length가 0일때는 '스터디가 없습니다'를 보여주도록 수정해야겠네요!
import { tokenHandlers } from './tokenHandlers'; | ||
import detailStudyHandlers from '@mocks/detailStudyHandlers'; | ||
import { myHandlers } from '@mocks/myHandlers'; | ||
import { reviewHandlers } from '@mocks/reviewHandler'; |
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.
이거 지워야겠네요!
@@ -89,4 +91,6 @@ export const handlers = [ | |||
...detailStudyHandlers, | |||
...tagHandlers, | |||
...tokenHandlers, | |||
...myHandlers, | |||
...reviewHandlers, |
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.
얘도!
요약
내 스터디 페이지를 생성하고, 헤더에 내 스터디 페이지로 이동하는 버튼을 추가했습니다.
close #134