-
Notifications
You must be signed in to change notification settings - Fork 17
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
[민지영] sprint6 #110
The head ref may contain hidden characters: "react-\uBBFC\uC9C0\uC601-mission06"
[민지영] sprint6 #110
Conversation
회원가입 및 로그인 form 버튼
Input component 수정중 (pw 미리보기 토글기능 추가예정)
SNS 로그인 및 회원가입 컴포넌트
create modal component in auth page
<li | ||
key={navItem} | ||
onClick={() => nav(NAV_ITEM[navItem].PATH)} | ||
className="text-gray-600 text-lg font-bold leading-[26px] cursor-pointer md:text-base" |
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.
모바일 일때의 폰트사이즈 16px 입니다. text-[16px] md:text-lg 로 적용하셔야 맞을 것 같네요. 반응형에서 보통 모바일의 폰트사이즈는 데스크탑의 사이즈보다 작은 경우가 대부분입니다.
}); | ||
}, [data]); | ||
|
||
if (error) return <p>데이터 가져오기 실패: {error}</p>; // 오류 발생 시 500 페이지로 이동 (수정 예정) |
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.
추후 500 페이지로 이동하도록 수정하신다고 하셨는데, 에러바운더리( https://www.npmjs.com/package/react-error-boundary) 사용하셔서 throw new Error() 로 에러 던지면 에러바운더리에서 받아서 500페이지를 표현하도록하고 사용자가 reset 버튼 눌렀을 때 다시 시도할 수 있게 해주시면 더 좋을 것 같습니다.
대부분의 프론트엔드 요구사항들을 잘 만족시켜주셨습니다. 추가적인 코멘트는 아래에 정리해 드리겠습니다.
|
요구사항
기본
심화
주요 변경사항
스크린샷
멘토에게