-
Notifications
You must be signed in to change notification settings - Fork 3
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
Style : 포즈피드 화면 구현 #8
Conversation
src/app/feed/page.tsx
Outdated
@@ -1,3 +1,27 @@ | |||
'use client'; |
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.
page 컴포넌트는 client component로 할 경우, import하여 사용하는 모든 하위 컴포넌트가 client component가 되어버립니다.
page.tsx는 server component로 살리고, 자식 컴포넌트에서 server component로 사용할 것과 client component로 사용할 것을 나누는 것이 필요해 보입니다.
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.
https://nextjs.org/docs/getting-started/react-essentials#patterns
공식 문서 한 번 읽어보시는 거 추천드려요 !
src/app/feed/components/Filter.tsx
Outdated
<div className="fixed left-0 right-0 top-116 flex h-56 items-center bg-white px-20"> | ||
<button className="bg-sub-white flex items-center gap-8 rounded-8 px-16 py-9"> | ||
<h5 id="subtitle-2">필터</h5> | ||
<Image src={ICON.carat.down} alt={'▾'} width={16} height={16} /> |
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.
문자열 props로 통일하는 방식을 통일해야 할 거 같아요
props를 넘길 때 문자열일 경우 " "
만으로도 전달이 되어서 {' '}
에서 { }
는 제거하는 거 어떤가요 ??
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.
재가 매번 Image prop 작성하는게 귀찮아서 Image 만 작성하고 solve problems? 버튼으로 없는 props를 자동으로 작성하는데요, 이 과정에서 저렇게 뜨는 것 같습니다... vsc 자동완성인데 설정으로 바꿀 수 있다면 바꿔보고 아니라면 직접 쓰는 방식으로 통일하겠습니다..!
💡 왜 PR을 올렸나요?
💁 무엇이 어떻게 바뀌나요?
📆 작업 예정인 것이 있나요 ?
💬 리뷰어분들께
api 연결 후에는 삭제 예정이니 무시해주세요 ㅎㅎ