-
Notifications
You must be signed in to change notification settings - Fork 1
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
[feat] 헤더 레이아웃 작업 #14
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.
수고하셨습니다 !
@@ -8,7 +8,7 @@ function HeaderLayout({ children }: HeaderLayoutProps) { | |||
return ( | |||
<> | |||
<header>추후 헤더 완성되면 만들어진 헤더 사용 예정 </header> | |||
<main>{children}</main> |
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.
혹시 메인태그 어떤 이유로 적어두셨었나요 ?? 🧐
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.
처음 의도는 어차피 본문은 시맨틱하게 main
태그로 시작한다고 생각해서 추가 하였는데, 사용하는 곳마다 css 설정이 다를 수 있을 것 같다고 생각해서 제거하였습니다!
main
태그 넣고도 그 안에서 section
이나 div
태그로도 디자인할 수 있지만 불필요한 태그가 추가되어 DOM의 깊이가 깊어질 수 있을 것 같아서 사용하는 곳에서 main
태그를 추가하여 디자인하는게 좋을 것 같다고 생각했습니다🙃
<Component {...pageProps} /> | ||
{getLayout(<Component {...pageProps} />)} |
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가 페이지 기본 구조대로 렌더링 되는것(어떤 레이아웃이든지 상관없이 페이지 컴포넌트만 렌더링) 되는 방식에서 getLayout을 통한 렌더링으로 바꿔주셨네요 !! 유지보수까지 고려한 코드 LGTM입니다 !! 👍
🎯 이슈 번호
🏁 작업 내용(필수)
💬 리뷰 요구 사항(선택)
HeaderLayout/index.tsx
에 반영해주시면 될 것 같습니다!📢 참고 사항(선택)